Convert THB to CNY
Thai Baht → Chinese Yuan
1 THB = 0.201328 CNY(1 CNY = 4.967016 THB)
Currency converter
1 THB =
0.20133 CNY
THB to CNY: last 30 days
Over the last 30 days, 1 THB traded between 0.20049 and 0.20404 CNY, averaging 0.2025 CNY. The THB/CNY rate is down 1.28% since 2026-08-28.
- 30-day high
- 0.20404
- 2026-09-09
- 30-day low
- 0.20049
- 2026-09-24
- 30-day average
- 0.2025
- Days with data: 30
- 30-day change
- -1.28%
- since 2026-08-28
0.20404
0.200492026-08-28 → 2026-09-26
| Date | 1 THB in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.20133 | 0.00% |
| 2026-09-25 | 0.20133 | +0.42% |
| 2026-09-24 | 0.20049 | -0.49% |
| 2026-09-23 | 0.20148 | -0.34% |
| 2026-09-22 | 0.20218 | +0.36% |
| 2026-09-21 | 0.20146 | +0.33% |
| 2026-09-20 | 0.2008 | 0.00% |
| 2026-09-19 | 0.2008 | 0.00% |
| 2026-09-18 | 0.2008 | -0.30% |
| 2026-09-17 | 0.2014 | -0.16% |
| 2026-09-16 | 0.20172 | +0.07% |
| 2026-09-15 | 0.20158 | -0.09% |
| 2026-09-14 | 0.20176 | -0.55% |
| 2026-09-13 | 0.20288 | 0.00% |
| 2026-09-12 | 0.20288 | 0.00% |
| Date | 1 THB in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.20288 | -0.18% |
| 2026-09-10 | 0.20325 | -0.39% |
| 2026-09-09 | 0.20404 | +0.08% |
| 2026-09-08 | 0.20387 | -0.07% |
| 2026-09-07 | 0.20401 | +0.08% |
| 2026-09-06 | 0.20385 | 0.00% |
| 2026-09-05 | 0.20385 | 0.00% |
| 2026-09-04 | 0.20385 | +0.08% |
| 2026-09-03 | 0.2037 | +0.69% |
| 2026-09-02 | 0.2023 | +0.11% |
| 2026-09-01 | 0.20208 | -0.26% |
| 2026-08-31 | 0.20261 | -0.65% |
| 2026-08-30 | 0.20394 | 0.00% |
| 2026-08-29 | 0.20394 | 0.00% |
| 2026-08-28 | 0.20394 | — |
THB to CNY conversion table
1 THB0.20133 CNY
5 THB1.0066 CNY
10 THB2.0133 CNY
25 THB5.0332 CNY
50 THB10.0664 CNY
100 THB20.1328 CNY
500 THB100.6641 CNY
1,000 THB201.3281 CNY
5,000 THB1,006.6407 CNY
10,000 THB2,013.2814 CNY
Get the THB/CNY rate in your app
One GET request returns the latest THB → CNY 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/THB/CNY"fetch('https://rate-api.com/api/v1/pair/THB/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 THB = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/THB/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 THB = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/THB/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 THB = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "THB",
"to": "CNY"
},
"rate": 0.2013,
"timestamp": 1790432075,
"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
CNY to THBChinese Yuan → Thai Baht4.967Convert THB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.