Convert TWD to CNY
New Taiwan Dollar → Chinese Yuan
1 TWD = 0.211225 CNY(1 CNY = 4.734283 TWD)
Currency converter
1 TWD =
0.21123 CNY
TWD to CNY: last 30 days
Over the last 30 days, 1 TWD traded between 0.21034 and 0.21319 CNY, averaging 0.21169 CNY. The TWD/CNY rate is down 0.60% since 2026-08-28.
- 30-day high
- 0.21319
- 2026-09-08
- 30-day low
- 0.21034
- 2026-09-17
- 30-day average
- 0.21169
- Days with data: 30
- 30-day change
- -0.60%
- since 2026-08-28
0.21319
0.210342026-08-28 → 2026-09-26
| Date | 1 TWD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.21123 | 0.00% |
| 2026-09-25 | 0.21123 | +0.15% |
| 2026-09-24 | 0.21092 | -0.22% |
| 2026-09-23 | 0.21137 | -0.02% |
| 2026-09-22 | 0.21142 | +0.39% |
| 2026-09-21 | 0.21061 | +0.08% |
| 2026-09-20 | 0.21044 | -0.09% |
| 2026-09-19 | 0.21063 | -0.03% |
| 2026-09-18 | 0.2107 | +0.17% |
| 2026-09-17 | 0.21034 | -0.41% |
| 2026-09-16 | 0.2112 | +0.03% |
| 2026-09-15 | 0.21114 | -0.17% |
| 2026-09-14 | 0.21151 | -0.22% |
| 2026-09-13 | 0.21197 | -0.20% |
| 2026-09-12 | 0.21239 | +0.19% |
| Date | 1 TWD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.21198 | -0.36% |
| 2026-09-10 | 0.21275 | -0.16% |
| 2026-09-09 | 0.21309 | -0.05% |
| 2026-09-08 | 0.21319 | +0.44% |
| 2026-09-07 | 0.21225 | +0.13% |
| 2026-09-06 | 0.21198 | +0.09% |
| 2026-09-05 | 0.21179 | +0.10% |
| 2026-09-04 | 0.21158 | -0.16% |
| 2026-09-03 | 0.21191 | +0.25% |
| 2026-09-02 | 0.21138 | -0.50% |
| 2026-09-01 | 0.21243 | +0.18% |
| 2026-08-31 | 0.21205 | -0.15% |
| 2026-08-30 | 0.21237 | +0.01% |
| 2026-08-29 | 0.21235 | -0.07% |
| 2026-08-28 | 0.2125 | — |
TWD to CNY conversion table
1 TWD0.21123 CNY
5 TWD1.0561 CNY
10 TWD2.1123 CNY
25 TWD5.2806 CNY
50 TWD10.5613 CNY
100 TWD21.1225 CNY
500 TWD105.6126 CNY
1,000 TWD211.2252 CNY
5,000 TWD1,056.1262 CNY
10,000 TWD2,112.2524 CNY
Get the TWD/CNY rate in your app
One GET request returns the latest TWD → 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/TWD/CNY"fetch('https://rate-api.com/api/v1/pair/TWD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TWD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TWD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TWD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TWD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TWD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "TWD",
"to": "CNY"
},
"rate": 0.2112,
"timestamp": 1790435073,
"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 TWDChinese Yuan → New Taiwan Dollar4.7343Convert TWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.