Convert AUD to CNY
Australian Dollar → Chinese Yuan
1 AUD = 4.719544 CNY(1 CNY = 0.211885 AUD)
Currency converter
1 AUD =
4.7195 CNY
AUD to CNY: last 30 days
Over the last 30 days, 1 AUD traded between 4.7167 and 4.8463 CNY, averaging 4.7969 CNY. The AUD/CNY rate is down 2.40% since 2026-08-28.
- 30-day high
- 4.8463
- 2026-09-09
- 30-day low
- 4.7167
- 2026-09-24
- 30-day average
- 4.7969
- Days with data: 30
- 30-day change
- -2.40%
- since 2026-08-28
4.8463
4.71672026-08-28 → 2026-09-26
| Date | 1 AUD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 4.7195 | 0.00% |
| 2026-09-25 | 4.7195 | +0.06% |
| 2026-09-24 | 4.7167 | -0.50% |
| 2026-09-23 | 4.7404 | -0.50% |
| 2026-09-22 | 4.764 | -0.31% |
| 2026-09-21 | 4.779 | +0.22% |
| 2026-09-20 | 4.7687 | 0.00% |
| 2026-09-19 | 4.7687 | 0.00% |
| 2026-09-18 | 4.7687 | -0.06% |
| 2026-09-17 | 4.7716 | -0.25% |
| 2026-09-16 | 4.7836 | +0.03% |
| 2026-09-15 | 4.7823 | -0.01% |
| 2026-09-14 | 4.7828 | -0.60% |
| 2026-09-13 | 4.8115 | 0.00% |
| 2026-09-12 | 4.8115 | 0.00% |
| Date | 1 AUD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 4.8115 | -0.14% |
| 2026-09-10 | 4.8184 | -0.58% |
| 2026-09-09 | 4.8463 | +0.10% |
| 2026-09-08 | 4.8413 | -0.01% |
| 2026-09-07 | 4.8416 | +0.15% |
| 2026-09-06 | 4.8342 | 0.00% |
| 2026-09-05 | 4.8342 | 0.00% |
| 2026-09-04 | 4.8342 | +0.02% |
| 2026-09-03 | 4.8332 | +0.60% |
| 2026-09-02 | 4.8042 | +0.07% |
| 2026-09-01 | 4.8006 | -0.25% |
| 2026-08-31 | 4.8125 | -0.48% |
| 2026-08-30 | 4.8355 | 0.00% |
| 2026-08-29 | 4.8355 | 0.00% |
| 2026-08-28 | 4.8355 | — |
AUD to CNY conversion table
1 AUD4.7195 CNY
5 AUD23.5977 CNY
10 AUD47.1954 CNY
25 AUD117.9886 CNY
50 AUD235.9772 CNY
100 AUD471.9544 CNY
500 AUD2,359.7719 CNY
1,000 AUD4,719.5438 CNY
5,000 AUD23,597.719 CNY
10,000 AUD47,195.438 CNY
Get the AUD/CNY rate in your app
One GET request returns the latest AUD → 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/AUD/CNY"fetch('https://rate-api.com/api/v1/pair/AUD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "CNY"
},
"rate": 4.7195,
"timestamp": 1790429332,
"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 AUDChinese Yuan → Australian Dollar0.21188Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.