Convert CNY to AUD
Chinese Yuan → Australian Dollar
1 CNY = 0.211885 AUD(1 AUD = 4.719544 CNY)
Currency converter
1 CNY =
0.21188 AUD
CNY to AUD: last 30 days
Over the last 30 days, 1 CNY traded between 0.20634 and 0.21201 AUD, averaging 0.20848 AUD. The CNY/AUD rate is up 2.46% since 2026-08-28.
- 30-day high
- 0.21201
- 2026-09-24
- 30-day low
- 0.20634
- 2026-09-09
- 30-day average
- 0.20848
- Days with data: 30
- 30-day change
- +2.46%
- since 2026-08-28
0.21201
0.206342026-08-28 → 2026-09-26
| Date | 1 CNY in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21188 | 0.00% |
| 2026-09-25 | 0.21188 | -0.06% |
| 2026-09-24 | 0.21201 | +0.50% |
| 2026-09-23 | 0.21095 | +0.50% |
| 2026-09-22 | 0.20991 | +0.32% |
| 2026-09-21 | 0.20925 | -0.22% |
| 2026-09-20 | 0.2097 | 0.00% |
| 2026-09-19 | 0.2097 | 0.00% |
| 2026-09-18 | 0.2097 | +0.06% |
| 2026-09-17 | 0.20957 | +0.25% |
| 2026-09-16 | 0.20905 | -0.03% |
| 2026-09-15 | 0.2091 | +0.01% |
| 2026-09-14 | 0.20908 | +0.60% |
| 2026-09-13 | 0.20784 | 0.00% |
| 2026-09-12 | 0.20784 | 0.00% |
| Date | 1 CNY in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.20784 | +0.14% |
| 2026-09-10 | 0.20754 | +0.58% |
| 2026-09-09 | 0.20634 | -0.10% |
| 2026-09-08 | 0.20656 | +0.01% |
| 2026-09-07 | 0.20654 | -0.15% |
| 2026-09-06 | 0.20686 | 0.00% |
| 2026-09-05 | 0.20686 | 0.00% |
| 2026-09-04 | 0.20686 | -0.02% |
| 2026-09-03 | 0.2069 | -0.60% |
| 2026-09-02 | 0.20815 | -0.07% |
| 2026-09-01 | 0.20831 | +0.25% |
| 2026-08-31 | 0.20779 | +0.48% |
| 2026-08-30 | 0.2068 | 0.00% |
| 2026-08-29 | 0.2068 | 0.00% |
| 2026-08-28 | 0.2068 | — |
CNY to AUD conversion table
1 CNY0.21188 AUD
5 CNY1.0594 AUD
10 CNY2.1188 AUD
25 CNY5.2971 AUD
50 CNY10.5942 AUD
100 CNY21.1885 AUD
500 CNY105.9424 AUD
1,000 CNY211.8849 AUD
5,000 CNY1,059.4244 AUD
10,000 CNY2,118.8489 AUD
Get the CNY/AUD rate in your app
One GET request returns the latest CNY → 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/CNY/AUD"fetch('https://rate-api.com/api/v1/pair/CNY/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "AUD"
},
"rate": 0.2119,
"timestamp": 1790429341,
"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 CNYAustralian Dollar → Chinese Yuan4.7195Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.