Convert HKD to GBP
Hong Kong Dollar → British Pound
1 HKD = 0.0961988 GBP(1 GBP = 10.395142 HKD)
Currency converter
1 HKD =
0.096199 GBP
HKD to GBP: last 30 days
Over the last 30 days, 1 HKD traded between 0.093913 and 0.096453 GBP, averaging 0.09477 GBP. The HKD/GBP rate is up 2.43% since 2026-08-28.
- 30-day high
- 0.096453
- 2026-09-24
- 30-day low
- 0.093913
- 2026-08-28
- 30-day average
- 0.09477
- Days with data: 30
- 30-day change
- +2.43%
- since 2026-08-28
0.096453
0.0939132026-08-28 → 2026-09-26
| Date | 1 HKD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.096199 | 0.00% |
| 2026-09-25 | 0.096199 | -0.26% |
| 2026-09-24 | 0.096453 | +0.44% |
| 2026-09-23 | 0.096027 | +0.65% |
| 2026-09-22 | 0.095408 | +0.26% |
| 2026-09-21 | 0.095159 | -0.38% |
| 2026-09-20 | 0.095526 | 0.00% |
| 2026-09-19 | 0.095526 | 0.00% |
| 2026-09-18 | 0.095526 | +0.25% |
| 2026-09-17 | 0.095291 | +0.59% |
| 2026-09-16 | 0.094733 | +0.20% |
| 2026-09-15 | 0.094545 | +0.07% |
| 2026-09-14 | 0.094479 | +0.08% |
| 2026-09-13 | 0.094402 | 0.00% |
| 2026-09-12 | 0.094402 | 0.00% |
| Date | 1 HKD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.094402 | +0.08% |
| 2026-09-10 | 0.094326 | +0.34% |
| 2026-09-09 | 0.094003 | -0.16% |
| 2026-09-08 | 0.09415 | -0.12% |
| 2026-09-07 | 0.094265 | -0.00% |
| 2026-09-06 | 0.094269 | 0.00% |
| 2026-09-05 | 0.094269 | 0.00% |
| 2026-09-04 | 0.094269 | -0.23% |
| 2026-09-03 | 0.094486 | -0.09% |
| 2026-09-02 | 0.094571 | +0.34% |
| 2026-09-01 | 0.094253 | +0.02% |
| 2026-08-31 | 0.094234 | +0.34% |
| 2026-08-30 | 0.093913 | 0.00% |
| 2026-08-29 | 0.093913 | 0.00% |
| 2026-08-28 | 0.093913 | — |
HKD to GBP conversion table
1 HKD0.096199 GBP
5 HKD0.48099 GBP
10 HKD0.96199 GBP
25 HKD2.405 GBP
50 HKD4.8099 GBP
100 HKD9.6199 GBP
500 HKD48.0994 GBP
1,000 HKD96.1988 GBP
5,000 HKD480.9939 GBP
10,000 HKD961.9878 GBP
Get the HKD/GBP rate in your app
One GET request returns the latest HKD → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/HKD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "GBP"
},
"rate": 0.0962,
"timestamp": 1790432200,
"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
GBP to HKDBritish Pound → Hong Kong Dollar10.3951Convert HKD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.