Convert CNY to HKD
Chinese Yuan → Hong Kong Dollar
1 CNY = 1.168437 HKD(1 HKD = 0.855844 CNY)
Currency converter
1 CNY =
1.1684 HKD
CNY to HKD: last 30 days
Over the last 30 days, 1 CNY traded between 1.1664 and 1.1718 HKD, averaging 1.1687 HKD. The CNY/HKD rate is up 0.17% since 2026-08-28.
- 30-day high
- 1.1718
- 2026-09-21
- 30-day low
- 1.1664
- 2026-08-31
- 30-day average
- 1.1687
- Days with data: 30
- 30-day change
- +0.17%
- since 2026-08-28
1.1718
1.16642026-08-28 → 2026-09-26
| Date | 1 CNY in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 1.1684 | 0.00% |
| 2026-09-25 | 1.1684 | +0.01% |
| 2026-09-24 | 1.1684 | -0.09% |
| 2026-09-23 | 1.1694 | -0.10% |
| 2026-09-22 | 1.1706 | -0.10% |
| 2026-09-21 | 1.1718 | +0.04% |
| 2026-09-20 | 1.1713 | 0.00% |
| 2026-09-19 | 1.1713 | 0.00% |
| 2026-09-18 | 1.1713 | +0.14% |
| 2026-09-17 | 1.1696 | -0.00% |
| 2026-09-16 | 1.1696 | +0.07% |
| 2026-09-15 | 1.1688 | -0.03% |
| 2026-09-14 | 1.1692 | +0.01% |
| 2026-09-13 | 1.169 | 0.00% |
| 2026-09-12 | 1.169 | 0.00% |
| Date | 1 CNY in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 1.169 | -0.02% |
| 2026-09-10 | 1.1692 | +0.01% |
| 2026-09-09 | 1.1691 | +0.05% |
| 2026-09-08 | 1.1685 | +0.02% |
| 2026-09-07 | 1.1683 | -0.00% |
| 2026-09-06 | 1.1683 | 0.00% |
| 2026-09-05 | 1.1683 | 0.00% |
| 2026-09-04 | 1.1683 | +0.11% |
| 2026-09-03 | 1.167 | +0.02% |
| 2026-09-02 | 1.1668 | +0.03% |
| 2026-09-01 | 1.1664 | +0.00% |
| 2026-08-31 | 1.1664 | -0.00% |
| 2026-08-30 | 1.1665 | 0.00% |
| 2026-08-29 | 1.1665 | 0.00% |
| 2026-08-28 | 1.1665 | — |
CNY to HKD conversion table
1 CNY1.1684 HKD
5 CNY5.8422 HKD
10 CNY11.6844 HKD
25 CNY29.2109 HKD
50 CNY58.4218 HKD
100 CNY116.8437 HKD
500 CNY584.2184 HKD
1,000 CNY1,168.4367 HKD
5,000 CNY5,842.1836 HKD
10,000 CNY11,684.367 HKD
Get the CNY/HKD rate in your app
One GET request returns the latest CNY → HKD 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/HKD"fetch('https://rate-api.com/api/v1/pair/CNY/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/HKD');
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']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "HKD"
},
"rate": 1.1684,
"timestamp": 1790447455,
"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
HKD to CNYHong Kong Dollar → Chinese Yuan0.85584Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.