Convert AUD to HKD
Australian Dollar → Hong Kong Dollar
1 AUD = 5.514488 HKD(1 HKD = 0.18134 AUD)
Currency converter
1 AUD =
5.5145 HKD
AUD to HKD: last 30 days
Over the last 30 days, 1 AUD traded between 5.5108 and 5.666 HKD, averaging 5.6062 HKD. The AUD/HKD rate is down 2.23% since 2026-08-28.
- 30-day high
- 5.666
- 2026-09-09
- 30-day low
- 5.5108
- 2026-09-24
- 30-day average
- 5.6062
- Days with data: 30
- 30-day change
- -2.23%
- since 2026-08-28
5.666
5.51082026-08-28 → 2026-09-26
| Date | 1 AUD in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 5.5145 | 0.00% |
| 2026-09-25 | 5.5145 | +0.07% |
| 2026-09-24 | 5.5108 | -0.59% |
| 2026-09-23 | 5.5435 | -0.60% |
| 2026-09-22 | 5.5769 | -0.41% |
| 2026-09-21 | 5.5999 | +0.26% |
| 2026-09-20 | 5.5855 | 0.00% |
| 2026-09-19 | 5.5855 | 0.00% |
| 2026-09-18 | 5.5855 | +0.08% |
| 2026-09-17 | 5.581 | -0.25% |
| 2026-09-16 | 5.5951 | +0.10% |
| 2026-09-15 | 5.5896 | -0.04% |
| 2026-09-14 | 5.592 | -0.58% |
| 2026-09-13 | 5.6247 | 0.00% |
| 2026-09-12 | 5.6247 | 0.00% |
| Date | 1 AUD in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 5.6247 | -0.16% |
| 2026-09-10 | 5.6339 | -0.57% |
| 2026-09-09 | 5.666 | +0.16% |
| 2026-09-08 | 5.657 | +0.01% |
| 2026-09-07 | 5.6563 | +0.15% |
| 2026-09-06 | 5.6478 | 0.00% |
| 2026-09-05 | 5.6478 | 0.00% |
| 2026-09-04 | 5.6478 | +0.13% |
| 2026-09-03 | 5.6405 | +0.63% |
| 2026-09-02 | 5.6054 | +0.10% |
| 2026-09-01 | 5.5995 | -0.25% |
| 2026-08-31 | 5.6133 | -0.48% |
| 2026-08-30 | 5.6404 | 0.00% |
| 2026-08-29 | 5.6404 | 0.00% |
| 2026-08-28 | 5.6404 | — |
AUD to HKD conversion table
1 AUD5.5145 HKD
5 AUD27.5724 HKD
10 AUD55.1449 HKD
25 AUD137.8622 HKD
50 AUD275.7244 HKD
100 AUD551.4488 HKD
500 AUD2,757.2441 HKD
1,000 AUD5,514.4883 HKD
5,000 AUD27,572.441 HKD
10,000 AUD55,144.883 HKD
Get the AUD/HKD rate in your app
One GET request returns the latest AUD → 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/AUD/HKD"fetch('https://rate-api.com/api/v1/pair/AUD/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/HKD');
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']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "HKD"
},
"rate": 5.5145,
"timestamp": 1790435092,
"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 AUDHong Kong Dollar → Australian Dollar0.18134Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.