Convert HKD to EUR
Hong Kong Dollar → Euro
1 HKD = 0.111801 EUR(1 EUR = 8.9445 HKD)
Currency converter
1 HKD =
0.1118 EUR
HKD to EUR: last 30 days
Over the last 30 days, 1 HKD traded between 0.10943 and 0.11217 EUR, averaging 0.11041 EUR. The HKD/EUR rate is up 2.05% since 2026-08-28.
- 30-day high
- 0.11217
- 2026-09-24
- 30-day low
- 0.10943
- 2026-09-09
- 30-day average
- 0.11041
- Days with data: 30
- 30-day change
- +2.05%
- since 2026-08-28
0.11217
0.109432026-08-28 → 2026-09-26
| Date | 1 HKD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.1118 | 0.00% |
| 2026-09-25 | 0.1118 | -0.33% |
| 2026-09-24 | 0.11217 | +0.40% |
| 2026-09-23 | 0.11172 | +0.45% |
| 2026-09-22 | 0.11122 | +0.26% |
| 2026-09-21 | 0.11093 | -0.27% |
| 2026-09-20 | 0.11123 | 0.00% |
| 2026-09-19 | 0.11123 | 0.00% |
| 2026-09-18 | 0.11123 | +0.19% |
| 2026-09-17 | 0.11102 | +0.48% |
| 2026-09-16 | 0.11049 | +0.01% |
| 2026-09-15 | 0.11048 | +0.09% |
| 2026-09-14 | 0.11038 | +0.34% |
| 2026-09-13 | 0.11001 | 0.00% |
| 2026-09-12 | 0.11001 | 0.00% |
| Date | 1 HKD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.11001 | +0.20% |
| 2026-09-10 | 0.10979 | +0.32% |
| 2026-09-09 | 0.10943 | -0.34% |
| 2026-09-08 | 0.10981 | +0.06% |
| 2026-09-07 | 0.10975 | +0.00% |
| 2026-09-06 | 0.10975 | 0.00% |
| 2026-09-05 | 0.10975 | 0.00% |
| 2026-09-04 | 0.10975 | -0.05% |
| 2026-09-03 | 0.1098 | -0.30% |
| 2026-09-02 | 0.11013 | +0.09% |
| 2026-09-01 | 0.11004 | +0.01% |
| 2026-08-31 | 0.11003 | +0.43% |
| 2026-08-30 | 0.10956 | 0.00% |
| 2026-08-29 | 0.10956 | 0.00% |
| 2026-08-28 | 0.10956 | — |
HKD to EUR conversion table
1 HKD0.1118 EUR
5 HKD0.559 EUR
10 HKD1.118 EUR
25 HKD2.795 EUR
50 HKD5.59 EUR
100 HKD11.1801 EUR
500 HKD55.9003 EUR
1,000 HKD111.8006 EUR
5,000 HKD559.0027 EUR
10,000 HKD1,118.0055 EUR
Get the HKD/EUR rate in your app
One GET request returns the latest HKD → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/HKD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "EUR"
},
"rate": 0.1118,
"timestamp": 1790432170,
"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
EUR to HKDEuro → Hong Kong Dollar8.9445Convert HKD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.