Convert GBP to HKD
British Pound → Hong Kong Dollar
1 GBP = 10.395142 HKD(1 HKD = 0.0961988 GBP)
Currency converter
1 GBP =
10.3951 HKD
GBP to HKD: last 30 days
Over the last 30 days, 1 GBP traded between 10.3677 and 10.6482 HKD, averaging 10.5525 HKD. The GBP/HKD rate is down 2.38% since 2026-08-28.
- 30-day high
- 10.6482
- 2026-08-28
- 30-day low
- 10.3677
- 2026-09-24
- 30-day average
- 10.5525
- Days with data: 30
- 30-day change
- -2.38%
- since 2026-08-28
10.6482
10.36772026-08-28 → 2026-09-26
| Date | 1 GBP in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 10.3951 | 0.00% |
| 2026-09-25 | 10.3951 | +0.26% |
| 2026-09-24 | 10.3677 | -0.44% |
| 2026-09-23 | 10.4137 | -0.65% |
| 2026-09-22 | 10.4813 | -0.26% |
| 2026-09-21 | 10.5087 | +0.39% |
| 2026-09-20 | 10.4684 | 0.00% |
| 2026-09-19 | 10.4684 | 0.00% |
| 2026-09-18 | 10.4684 | -0.25% |
| 2026-09-17 | 10.4941 | -0.59% |
| 2026-09-16 | 10.556 | -0.20% |
| 2026-09-15 | 10.5769 | -0.07% |
| 2026-09-14 | 10.5843 | -0.08% |
| 2026-09-13 | 10.593 | 0.00% |
| 2026-09-12 | 10.593 | 0.00% |
| Date | 1 GBP in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 10.593 | -0.08% |
| 2026-09-10 | 10.6015 | -0.34% |
| 2026-09-09 | 10.638 | +0.16% |
| 2026-09-08 | 10.6213 | +0.12% |
| 2026-09-07 | 10.6083 | +0.00% |
| 2026-09-06 | 10.6079 | 0.00% |
| 2026-09-05 | 10.6079 | 0.00% |
| 2026-09-04 | 10.6079 | +0.23% |
| 2026-09-03 | 10.5836 | +0.09% |
| 2026-09-02 | 10.5741 | -0.34% |
| 2026-09-01 | 10.6097 | -0.02% |
| 2026-08-31 | 10.6118 | -0.34% |
| 2026-08-30 | 10.6482 | 0.00% |
| 2026-08-29 | 10.6482 | 0.00% |
| 2026-08-28 | 10.6482 | — |
GBP to HKD conversion table
1 GBP10.3951 HKD
5 GBP51.9757 HKD
10 GBP103.9514 HKD
25 GBP259.8786 HKD
50 GBP519.7571 HKD
100 GBP1,039.5142 HKD
500 GBP5,197.571 HKD
1,000 GBP10,395.142 HKD
5,000 GBP51,975.71 HKD
10,000 GBP103,951.42 HKD
Get the GBP/HKD rate in your app
One GET request returns the latest GBP → 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/GBP/HKD"fetch('https://rate-api.com/api/v1/pair/GBP/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/HKD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "HKD"
},
"rate": 10.3951,
"timestamp": 1790447472,
"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 GBPHong Kong Dollar → British Pound0.096199Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.