Convert HKD to AUD
Hong Kong Dollar → Australian Dollar
1 HKD = 0.18134 AUD(1 AUD = 5.514488 HKD)
Currency converter
1 HKD =
0.18134 AUD
HKD to AUD: last 30 days
Over the last 30 days, 1 HKD traded between 0.17649 and 0.18146 AUD, averaging 0.17838 AUD. The HKD/AUD rate is up 2.28% since 2026-08-28.
- 30-day high
- 0.18146
- 2026-09-24
- 30-day low
- 0.17649
- 2026-09-09
- 30-day average
- 0.17838
- Days with data: 30
- 30-day change
- +2.28%
- since 2026-08-28
0.18146
0.176492026-08-28 → 2026-09-26
| Date | 1 HKD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.18134 | 0.00% |
| 2026-09-25 | 0.18134 | -0.07% |
| 2026-09-24 | 0.18146 | +0.59% |
| 2026-09-23 | 0.18039 | +0.60% |
| 2026-09-22 | 0.17931 | +0.41% |
| 2026-09-21 | 0.17858 | -0.26% |
| 2026-09-20 | 0.17903 | 0.00% |
| 2026-09-19 | 0.17903 | 0.00% |
| 2026-09-18 | 0.17903 | -0.08% |
| 2026-09-17 | 0.17918 | +0.25% |
| 2026-09-16 | 0.17873 | -0.10% |
| 2026-09-15 | 0.1789 | +0.04% |
| 2026-09-14 | 0.17883 | +0.58% |
| 2026-09-13 | 0.17779 | 0.00% |
| 2026-09-12 | 0.17779 | 0.00% |
| Date | 1 HKD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.17779 | +0.16% |
| 2026-09-10 | 0.1775 | +0.57% |
| 2026-09-09 | 0.17649 | -0.16% |
| 2026-09-08 | 0.17677 | -0.01% |
| 2026-09-07 | 0.17679 | -0.15% |
| 2026-09-06 | 0.17706 | 0.00% |
| 2026-09-05 | 0.17706 | 0.00% |
| 2026-09-04 | 0.17706 | -0.13% |
| 2026-09-03 | 0.17729 | -0.62% |
| 2026-09-02 | 0.1784 | -0.10% |
| 2026-09-01 | 0.17859 | +0.25% |
| 2026-08-31 | 0.17815 | +0.48% |
| 2026-08-30 | 0.17729 | 0.00% |
| 2026-08-29 | 0.17729 | 0.00% |
| 2026-08-28 | 0.17729 | — |
HKD to AUD conversion table
1 HKD0.18134 AUD
5 HKD0.9067 AUD
10 HKD1.8134 AUD
25 HKD4.5335 AUD
50 HKD9.067 AUD
100 HKD18.134 AUD
500 HKD90.6702 AUD
1,000 HKD181.3405 AUD
5,000 HKD906.7024 AUD
10,000 HKD1,813.4049 AUD
Get the HKD/AUD rate in your app
One GET request returns the latest HKD → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/HKD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "AUD"
},
"rate": 0.1813,
"timestamp": 1790435091,
"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
AUD to HKDAustralian Dollar → Hong Kong Dollar5.5145Convert HKD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.