Convert ZAR to CNY
South African Rand → Chinese Yuan
1 ZAR = 0.412012 CNY(1 CNY = 2.427114 ZAR)
Currency converter
1 ZAR =
0.41201 CNY
ZAR to CNY: last 30 days
Over the last 30 days, 1 ZAR traded between 0.40839 and 0.42029 CNY, averaging 0.41533 CNY. The ZAR/CNY rate is down 1.90% since 2026-08-28.
- 30-day high
- 0.42029
- 2026-09-04
- 30-day low
- 0.40839
- 2026-09-24
- 30-day average
- 0.41533
- Days with data: 30
- 30-day change
- -1.90%
- since 2026-08-28
0.42029
0.408392026-08-28 → 2026-09-26
| Date | 1 ZAR in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.41201 | 0.00% |
| 2026-09-25 | 0.41201 | +0.89% |
| 2026-09-24 | 0.40839 | -0.47% |
| 2026-09-23 | 0.41031 | -0.54% |
| 2026-09-22 | 0.41252 | +0.18% |
| 2026-09-21 | 0.41179 | +0.05% |
| 2026-09-20 | 0.41159 | 0.00% |
| 2026-09-19 | 0.41159 | 0.00% |
| 2026-09-18 | 0.41159 | -0.27% |
| 2026-09-17 | 0.41271 | +0.10% |
| 2026-09-16 | 0.41229 | -0.03% |
| 2026-09-15 | 0.41243 | -0.10% |
| 2026-09-14 | 0.41284 | -0.55% |
| 2026-09-13 | 0.41514 | 0.00% |
| 2026-09-12 | 0.41514 | 0.00% |
| Date | 1 ZAR in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.41514 | -0.05% |
| 2026-09-10 | 0.41534 | -0.68% |
| 2026-09-09 | 0.4182 | -0.14% |
| 2026-09-08 | 0.41878 | -0.21% |
| 2026-09-07 | 0.41966 | -0.15% |
| 2026-09-06 | 0.42029 | 0.00% |
| 2026-09-05 | 0.42029 | 0.00% |
| 2026-09-04 | 0.42029 | +0.32% |
| 2026-09-03 | 0.41897 | +0.32% |
| 2026-09-02 | 0.41763 | +0.37% |
| 2026-09-01 | 0.41609 | -0.21% |
| 2026-08-31 | 0.41695 | -0.73% |
| 2026-08-30 | 0.42001 | 0.00% |
| 2026-08-29 | 0.42001 | 0.00% |
| 2026-08-28 | 0.42001 | — |
ZAR to CNY conversion table
1 ZAR0.41201 CNY
5 ZAR2.0601 CNY
10 ZAR4.1201 CNY
25 ZAR10.3003 CNY
50 ZAR20.6006 CNY
100 ZAR41.2012 CNY
500 ZAR206.006 CNY
1,000 ZAR412.012 CNY
5,000 ZAR2,060.0598 CNY
10,000 ZAR4,120.1197 CNY
Get the ZAR/CNY rate in your app
One GET request returns the latest ZAR → 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/ZAR/CNY"fetch('https://rate-api.com/api/v1/pair/ZAR/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZAR = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "CNY"
},
"rate": 0.412,
"timestamp": 1790432091,
"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 ZARChinese Yuan → South African Rand2.4271Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.