Convert CNY to TWD
Chinese Yuan → New Taiwan Dollar
1 CNY = 4.734283 TWD(1 TWD = 0.211225 CNY)
Currency converter
1 CNY =
4.7343 TWD
CNY to TWD: last 30 days
Over the last 30 days, 1 CNY traded between 4.6907 and 4.7542 TWD, averaging 4.724 TWD. The CNY/TWD rate is up 0.60% since 2026-08-28.
- 30-day high
- 4.7542
- 2026-09-17
- 30-day low
- 4.6907
- 2026-09-08
- 30-day average
- 4.724
- Days with data: 30
- 30-day change
- +0.60%
- since 2026-08-28
4.7542
4.69072026-08-28 → 2026-09-26
| Date | 1 CNY in TWD | Daily change |
|---|---|---|
| 2026-09-26 | 4.7343 | 0.00% |
| 2026-09-25 | 4.7343 | -0.15% |
| 2026-09-24 | 4.7412 | +0.22% |
| 2026-09-23 | 4.731 | +0.02% |
| 2026-09-22 | 4.7298 | -0.39% |
| 2026-09-21 | 4.7481 | -0.08% |
| 2026-09-20 | 4.752 | +0.09% |
| 2026-09-19 | 4.7477 | +0.03% |
| 2026-09-18 | 4.746 | -0.17% |
| 2026-09-17 | 4.7542 | +0.41% |
| 2026-09-16 | 4.7348 | -0.03% |
| 2026-09-15 | 4.7362 | +0.17% |
| 2026-09-14 | 4.7279 | +0.22% |
| 2026-09-13 | 4.7177 | +0.20% |
| 2026-09-12 | 4.7083 | -0.19% |
| Date | 1 CNY in TWD | Daily change |
|---|---|---|
| 2026-09-11 | 4.7174 | +0.36% |
| 2026-09-10 | 4.7003 | +0.16% |
| 2026-09-09 | 4.6929 | +0.05% |
| 2026-09-08 | 4.6907 | -0.44% |
| 2026-09-07 | 4.7114 | -0.13% |
| 2026-09-06 | 4.7174 | -0.09% |
| 2026-09-05 | 4.7216 | -0.10% |
| 2026-09-04 | 4.7264 | +0.16% |
| 2026-09-03 | 4.719 | -0.25% |
| 2026-09-02 | 4.7309 | +0.50% |
| 2026-09-01 | 4.7074 | -0.18% |
| 2026-08-31 | 4.7158 | +0.15% |
| 2026-08-30 | 4.7088 | -0.01% |
| 2026-08-29 | 4.7091 | +0.07% |
| 2026-08-28 | 4.7059 | — |
CNY to TWD conversion table
1 CNY4.7343 TWD
5 CNY23.6714 TWD
10 CNY47.3428 TWD
25 CNY118.3571 TWD
50 CNY236.7141 TWD
100 CNY473.4283 TWD
500 CNY2,367.1414 TWD
1,000 CNY4,734.2827 TWD
5,000 CNY23,671.414 TWD
10,000 CNY47,342.827 TWD
Get the CNY/TWD rate in your app
One GET request returns the latest CNY → TWD 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/TWD"fetch('https://rate-api.com/api/v1/pair/CNY/TWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} TWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/TWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} TWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/TWD');
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']} TWD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "TWD"
},
"rate": 4.7343,
"timestamp": 1790447441,
"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
TWD to CNYNew Taiwan Dollar → Chinese Yuan0.21123Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.