Convert HKD to CAD
Hong Kong Dollar → Canadian Dollar
1 HKD = 0.180301 CAD(1 CAD = 5.546289 HKD)
Currency converter
1 HKD =
0.1803 CAD
HKD to CAD: last 30 days
Over the last 30 days, 1 HKD traded between 0.17556 and 0.1803 CAD, averaging 0.17748 CAD. The HKD/CAD rate is up 2.03% since 2026-08-28.
- 30-day high
- 0.1803
- 2026-09-25
- 30-day low
- 0.17556
- 2026-09-09
- 30-day average
- 0.17748
- Days with data: 30
- 30-day change
- +2.03%
- since 2026-08-28
0.1803
0.175562026-08-28 → 2026-09-26
| Date | 1 HKD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.1803 | 0.00% |
| 2026-09-25 | 0.1803 | +0.16% |
| 2026-09-24 | 0.18 | +0.21% |
| 2026-09-23 | 0.17962 | +0.32% |
| 2026-09-22 | 0.17906 | +0.31% |
| 2026-09-21 | 0.1785 | -0.05% |
| 2026-09-20 | 0.17859 | 0.00% |
| 2026-09-19 | 0.17859 | 0.00% |
| 2026-09-18 | 0.17859 | +0.11% |
| 2026-09-17 | 0.17839 | +0.40% |
| 2026-09-16 | 0.17768 | +0.13% |
| 2026-09-15 | 0.17745 | +0.22% |
| 2026-09-14 | 0.17705 | +0.19% |
| 2026-09-13 | 0.17672 | 0.00% |
| 2026-09-12 | 0.17672 | 0.00% |
| Date | 1 HKD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.17672 | +0.29% |
| 2026-09-10 | 0.1762 | +0.36% |
| 2026-09-09 | 0.17556 | -0.28% |
| 2026-09-08 | 0.17606 | -0.12% |
| 2026-09-07 | 0.17627 | +0.15% |
| 2026-09-06 | 0.17601 | 0.00% |
| 2026-09-05 | 0.17601 | 0.00% |
| 2026-09-04 | 0.17601 | +0.07% |
| 2026-09-03 | 0.17589 | -0.94% |
| 2026-09-02 | 0.17756 | +0.25% |
| 2026-09-01 | 0.17712 | -0.03% |
| 2026-08-31 | 0.17716 | +0.25% |
| 2026-08-30 | 0.17672 | 0.00% |
| 2026-08-29 | 0.17672 | 0.00% |
| 2026-08-28 | 0.17672 | — |
HKD to CAD conversion table
1 HKD0.1803 CAD
5 HKD0.9015 CAD
10 HKD1.803 CAD
25 HKD4.5075 CAD
50 HKD9.015 CAD
100 HKD18.0301 CAD
500 HKD90.1504 CAD
1,000 HKD180.3007 CAD
5,000 HKD901.5037 CAD
10,000 HKD1,803.0074 CAD
Get the HKD/CAD rate in your app
One GET request returns the latest HKD → 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/HKD/CAD"fetch('https://rate-api.com/api/v1/pair/HKD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 HKD = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "CAD"
},
"rate": 0.1803,
"timestamp": 1790435151,
"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 HKDCanadian Dollar → Hong Kong Dollar5.5463Convert HKD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.