Convert CNY to GEL
Chinese Yuan → Georgian Lari
1 CNY = 0.387423 GEL(1 GEL = 2.581161 CNY)
Currency converter
1 CNY =
0.38742 GEL
CNY to GEL: last 30 days
Over the last 30 days, 1 CNY traded between 0.3871 and 0.38903 GEL, averaging 0.38781 GEL. The CNY/GEL rate is down 0.04% since 2026-08-28.
- 30-day high
- 0.38903
- 2026-09-04
- 30-day low
- 0.3871
- 2026-08-31
- 30-day average
- 0.38781
- Days with data: 30
- 30-day change
- -0.04%
- since 2026-08-28
0.38903
0.38712026-08-28 → 2026-09-26
| Date | 1 CNY in GEL | Daily change |
|---|---|---|
| 2026-09-26 | 0.38742 | 0.00% |
| 2026-09-25 | 0.38742 | -0.33% |
| 2026-09-24 | 0.38872 | +0.17% |
| 2026-09-23 | 0.38807 | +0.02% |
| 2026-09-22 | 0.38799 | -0.04% |
| 2026-09-21 | 0.38814 | -0.00% |
| 2026-09-20 | 0.38814 | -0.03% |
| 2026-09-19 | 0.38824 | +0.29% |
| 2026-09-18 | 0.38711 | -0.11% |
| 2026-09-17 | 0.38755 | +0.03% |
| 2026-09-16 | 0.38745 | +0.07% |
| 2026-09-15 | 0.38719 | -0.02% |
| 2026-09-14 | 0.38729 | -0.22% |
| 2026-09-13 | 0.38815 | +0.08% |
| 2026-09-12 | 0.38782 | +0.02% |
| Date | 1 CNY in GEL | Daily change |
|---|---|---|
| 2026-09-11 | 0.38775 | -0.06% |
| 2026-09-10 | 0.388 | +0.04% |
| 2026-09-09 | 0.38784 | -0.01% |
| 2026-09-08 | 0.38786 | +0.09% |
| 2026-09-07 | 0.38752 | -0.19% |
| 2026-09-06 | 0.38826 | -0.04% |
| 2026-09-05 | 0.38841 | -0.16% |
| 2026-09-04 | 0.38903 | +0.30% |
| 2026-09-03 | 0.38787 | -0.10% |
| 2026-09-02 | 0.38826 | +0.13% |
| 2026-09-01 | 0.38776 | +0.17% |
| 2026-08-31 | 0.3871 | -0.03% |
| 2026-08-30 | 0.38721 | +0.00% |
| 2026-08-29 | 0.38721 | -0.09% |
| 2026-08-28 | 0.38757 | — |
CNY to GEL conversion table
1 CNY0.38742 GEL
5 CNY1.9371 GEL
10 CNY3.8742 GEL
25 CNY9.6856 GEL
50 CNY19.3711 GEL
100 CNY38.7423 GEL
500 CNY193.7113 GEL
1,000 CNY387.4226 GEL
5,000 CNY1,937.1129 GEL
10,000 CNY3,874.2258 GEL
Get the CNY/GEL rate in your app
One GET request returns the latest CNY → GEL rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/CNY/GEL"fetch('https://rate-api.com/api/v1/pair/CNY/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/GEL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "GEL"
},
"rate": 0.3874,
"timestamp": 1790429396,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
GEL to CNYGeorgian Lari → Chinese Yuan2.5812Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.