Convert CNH to CAD
Chinese Yuan (Offshore) → Canadian Dollar
1 CNH = 0.210467 CAD(1 CAD = 4.751339 CNH)
Currency converter
1 CNH =
0.21047 CAD
CNH to CAD: last 30 days
Over the last 30 days, 1 CNH traded between 0.20488 and 0.21047 CAD, averaging 0.20733 CAD. The CNH/CAD rate is up 2.12% since 2026-08-28.
- 30-day high
- 0.21047
- 2026-09-25
- 30-day low
- 0.20488
- 2026-08-29
- 30-day average
- 0.20733
- Days with data: 30
- 30-day change
- +2.12%
- since 2026-08-28
0.21047
0.204882026-08-28 → 2026-09-26
| Date | 1 CNH in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21047 | 0.00% |
| 2026-09-25 | 0.21047 | +0.13% |
| 2026-09-24 | 0.2102 | +0.04% |
| 2026-09-23 | 0.21011 | +0.18% |
| 2026-09-22 | 0.20974 | +0.27% |
| 2026-09-21 | 0.20917 | +0.03% |
| 2026-09-20 | 0.2091 | +0.11% |
| 2026-09-19 | 0.20888 | -0.19% |
| 2026-09-18 | 0.20928 | +0.31% |
| 2026-09-17 | 0.20863 | +0.43% |
| 2026-09-16 | 0.20773 | +0.15% |
| 2026-09-15 | 0.20741 | +0.18% |
| 2026-09-14 | 0.20704 | +0.20% |
| 2026-09-13 | 0.20662 | +0.01% |
| 2026-09-12 | 0.2066 | +0.11% |
| Date | 1 CNH in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.20638 | +0.19% |
| 2026-09-10 | 0.206 | +0.35% |
| 2026-09-09 | 0.20528 | -0.18% |
| 2026-09-08 | 0.20565 | -0.11% |
| 2026-09-07 | 0.20588 | +0.08% |
| 2026-09-06 | 0.20572 | +0.00% |
| 2026-09-05 | 0.20572 | +0.13% |
| 2026-09-04 | 0.20544 | +0.06% |
| 2026-09-03 | 0.20531 | -0.86% |
| 2026-09-02 | 0.2071 | +0.22% |
| 2026-09-01 | 0.20664 | +0.07% |
| 2026-08-31 | 0.2065 | +0.33% |
| 2026-08-30 | 0.20582 | +0.46% |
| 2026-08-29 | 0.20488 | -0.59% |
| 2026-08-28 | 0.2061 | — |
CNH to CAD conversion table
1 CNH0.21047 CAD
5 CNH1.0523 CAD
10 CNH2.1047 CAD
25 CNH5.2617 CAD
50 CNH10.5234 CAD
100 CNH21.0467 CAD
500 CNH105.2335 CAD
1,000 CNH210.467 CAD
5,000 CNH1,052.335 CAD
10,000 CNH2,104.6699 CAD
Get the CNH/CAD rate in your app
One GET request returns the latest CNH → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/CNH/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNH = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNH/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNH = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNH/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "CNH",
"to": "CAD"
},
"rate": 0.2105,
"timestamp": 1790435215,
"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
CAD to CNHCanadian Dollar → Chinese Yuan (Offshore)4.7513Convert CNH to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.