Convert CNY to ZAR
Chinese Yuan → South African Rand
1 CNY = 2.427114 ZAR(1 ZAR = 0.412012 CNY)
Currency converter
1 CNY =
2.4271 ZAR
CNY to ZAR: last 30 days
Over the last 30 days, 1 CNY traded between 2.3793 and 2.4486 ZAR, averaging 2.4079 ZAR. The CNY/ZAR rate is up 1.94% since 2026-08-28.
- 30-day high
- 2.4486
- 2026-09-24
- 30-day low
- 2.3793
- 2026-09-04
- 30-day average
- 2.4079
- Days with data: 30
- 30-day change
- +1.94%
- since 2026-08-28
2.4486
2.37932026-08-28 → 2026-09-26
| Date | 1 CNY in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 2.4271 | 0.00% |
| 2026-09-25 | 2.4271 | -0.88% |
| 2026-09-24 | 2.4486 | +0.47% |
| 2026-09-23 | 2.4372 | +0.54% |
| 2026-09-22 | 2.4241 | -0.18% |
| 2026-09-21 | 2.4284 | -0.05% |
| 2026-09-20 | 2.4296 | 0.00% |
| 2026-09-19 | 2.4296 | 0.00% |
| 2026-09-18 | 2.4296 | +0.27% |
| 2026-09-17 | 2.423 | -0.10% |
| 2026-09-16 | 2.4255 | +0.03% |
| 2026-09-15 | 2.4247 | +0.10% |
| 2026-09-14 | 2.4222 | +0.56% |
| 2026-09-13 | 2.4088 | 0.00% |
| 2026-09-12 | 2.4088 | 0.00% |
| Date | 1 CNY in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 2.4088 | +0.05% |
| 2026-09-10 | 2.4077 | +0.69% |
| 2026-09-09 | 2.3912 | +0.14% |
| 2026-09-08 | 2.3879 | +0.21% |
| 2026-09-07 | 2.3829 | +0.15% |
| 2026-09-06 | 2.3793 | 0.00% |
| 2026-09-05 | 2.3793 | 0.00% |
| 2026-09-04 | 2.3793 | -0.32% |
| 2026-09-03 | 2.3868 | -0.32% |
| 2026-09-02 | 2.3945 | -0.37% |
| 2026-09-01 | 2.4033 | +0.21% |
| 2026-08-31 | 2.3984 | +0.73% |
| 2026-08-30 | 2.3809 | 0.00% |
| 2026-08-29 | 2.3809 | 0.00% |
| 2026-08-28 | 2.3809 | — |
CNY to ZAR conversion table
1 CNY2.4271 ZAR
5 CNY12.1356 ZAR
10 CNY24.2711 ZAR
25 CNY60.6778 ZAR
50 CNY121.3557 ZAR
100 CNY242.7114 ZAR
500 CNY1,213.557 ZAR
1,000 CNY2,427.114 ZAR
5,000 CNY12,135.57 ZAR
10,000 CNY24,271.14 ZAR
Get the CNY/ZAR rate in your app
One GET request returns the latest CNY → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/CNY/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "ZAR"
},
"rate": 2.4271,
"timestamp": 1790429354,
"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
ZAR to CNYSouth African Rand → Chinese Yuan0.41201Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.