Convert AUD to CNH
Australian Dollar → Chinese Yuan (Offshore)
1 AUD = 4.727921 CNH(1 CNH = 0.211509 AUD)
Currency converter
1 AUD =
4.7279 CNH
AUD to CNH: last 30 days
Over the last 30 days, 1 AUD traded between 4.7192 and 4.8652 CNH, averaging 4.7955 CNH. The AUD/CNH rate is down 2.82% since 2026-08-29.
- 30-day high
- 4.8652
- 2026-08-29
- 30-day low
- 4.7192
- 2026-09-24
- 30-day average
- 4.7955
- Days with data: 30
- 30-day change
- -2.82%
- since 2026-08-29
4.8652
4.71922026-08-29 → 2026-09-27
| Date | 1 AUD in CNH | Daily change |
|---|---|---|
| 2026-09-27 | 4.7279 | 0.00% |
| 2026-09-26 | 4.7279 | +0.08% |
| 2026-09-25 | 4.7241 | +0.10% |
| 2026-09-24 | 4.7192 | -0.42% |
| 2026-09-23 | 4.739 | -0.46% |
| 2026-09-22 | 4.7609 | -0.37% |
| 2026-09-21 | 4.7787 | +0.17% |
| 2026-09-20 | 4.7704 | -0.11% |
| 2026-09-19 | 4.7756 | +0.19% |
| 2026-09-18 | 4.7663 | -0.12% |
| 2026-09-17 | 4.7721 | -0.29% |
| 2026-09-16 | 4.7858 | +0.08% |
| 2026-09-15 | 4.7821 | +0.00% |
| 2026-09-14 | 4.7821 | -0.59% |
| 2026-09-13 | 4.8106 | -0.01% |
| Date | 1 AUD in CNH | Daily change |
|---|---|---|
| 2026-09-12 | 4.8111 | -0.11% |
| 2026-09-11 | 4.8162 | -0.06% |
| 2026-09-10 | 4.8188 | -0.55% |
| 2026-09-09 | 4.8456 | +0.06% |
| 2026-09-08 | 4.8429 | +0.00% |
| 2026-09-07 | 4.8427 | +0.21% |
| 2026-09-06 | 4.8324 | -0.00% |
| 2026-09-05 | 4.8324 | -0.13% |
| 2026-09-04 | 4.8388 | +0.14% |
| 2026-09-03 | 4.8321 | +0.55% |
| 2026-09-02 | 4.8058 | +0.13% |
| 2026-09-01 | 4.7995 | -0.34% |
| 2026-08-31 | 4.8159 | -0.56% |
| 2026-08-30 | 4.8428 | -0.46% |
| 2026-08-29 | 4.8652 | — |
AUD to CNH conversion table
1 AUD4.7279 CNH
5 AUD23.6396 CNH
10 AUD47.2792 CNH
25 AUD118.198 CNH
50 AUD236.396 CNH
100 AUD472.7921 CNH
500 AUD2,363.9604 CNH
1,000 AUD4,727.9208 CNH
5,000 AUD23,639.604 CNH
10,000 AUD47,279.208 CNH
Get the AUD/CNH rate in your app
One GET request returns the latest AUD → CNH 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/CNH"fetch('https://rate-api.com/api/v1/pair/AUD/CNH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} CNH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/CNH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} CNH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/CNH');
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']} CNH\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "CNH"
},
"rate": 4.7279,
"timestamp": 1790470785,
"date": "2026-09-27"
}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
CNH to AUDChinese Yuan (Offshore) → Australian Dollar0.21151Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.