Convert CNH to AUD
Chinese Yuan (Offshore) → Australian Dollar
1 CNH = 0.211681 AUD(1 AUD = 4.724096 CNH)
Currency converter
1 CNH =
0.21168 AUD
CNH to AUD: last 30 days
Over the last 30 days, 1 CNH traded between 0.20554 and 0.2119 AUD, averaging 0.20839 AUD. The CNH/AUD rate is up 2.37% since 2026-08-28.
- 30-day high
- 0.2119
- 2026-09-24
- 30-day low
- 0.20554
- 2026-08-29
- 30-day average
- 0.20839
- Days with data: 30
- 30-day change
- +2.37%
- since 2026-08-28
0.2119
0.205542026-08-28 → 2026-09-26
| Date | 1 CNH in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21168 | 0.00% |
| 2026-09-25 | 0.21168 | -0.10% |
| 2026-09-24 | 0.2119 | +0.42% |
| 2026-09-23 | 0.21101 | +0.46% |
| 2026-09-22 | 0.21004 | +0.37% |
| 2026-09-21 | 0.20926 | -0.17% |
| 2026-09-20 | 0.20963 | +0.11% |
| 2026-09-19 | 0.2094 | -0.19% |
| 2026-09-18 | 0.2098 | +0.12% |
| 2026-09-17 | 0.20955 | +0.29% |
| 2026-09-16 | 0.20895 | -0.08% |
| 2026-09-15 | 0.20911 | -0.00% |
| 2026-09-14 | 0.20911 | +0.60% |
| 2026-09-13 | 0.20787 | +0.01% |
| 2026-09-12 | 0.20785 | +0.11% |
| Date | 1 CNH in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.20763 | +0.06% |
| 2026-09-10 | 0.20752 | +0.56% |
| 2026-09-09 | 0.20637 | -0.06% |
| 2026-09-08 | 0.20649 | -0.00% |
| 2026-09-07 | 0.2065 | -0.21% |
| 2026-09-06 | 0.20694 | +0.00% |
| 2026-09-05 | 0.20694 | +0.13% |
| 2026-09-04 | 0.20666 | -0.14% |
| 2026-09-03 | 0.20695 | -0.54% |
| 2026-09-02 | 0.20808 | -0.13% |
| 2026-09-01 | 0.20836 | +0.34% |
| 2026-08-31 | 0.20765 | +0.56% |
| 2026-08-30 | 0.20649 | +0.46% |
| 2026-08-29 | 0.20554 | -0.59% |
| 2026-08-28 | 0.20677 | — |
CNH to AUD conversion table
1 CNH0.21168 AUD
5 CNH1.0584 AUD
10 CNH2.1168 AUD
25 CNH5.292 AUD
50 CNH10.584 AUD
100 CNH21.1681 AUD
500 CNH105.8404 AUD
1,000 CNH211.6807 AUD
5,000 CNH1,058.4035 AUD
10,000 CNH2,116.807 AUD
Get the CNH/AUD rate in your app
One GET request returns the latest CNH → AUD 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/CNH/AUD"fetch('https://rate-api.com/api/v1/pair/CNH/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNH = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNH/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNH = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNH/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNH = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "CNH",
"to": "AUD"
},
"rate": 0.2117,
"timestamp": 1790435208,
"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
AUD to CNHAustralian Dollar → Chinese Yuan (Offshore)4.7241Convert CNH to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.