Convert EUR to HKD
Euro → Hong Kong Dollar
1 EUR = 8.9445 HKD(1 HKD = 0.111801 EUR)
Currency converter
1 EUR =
8.9445 HKD
EUR to HKD: last 30 days
Over the last 30 days, 1 EUR traded between 8.9148 and 9.1379 HKD, averaging 9.0573 HKD. The EUR/HKD rate is down 2.01% since 2026-08-28.
- 30-day high
- 9.1379
- 2026-09-09
- 30-day low
- 8.9148
- 2026-09-24
- 30-day average
- 9.0573
- Days with data: 30
- 30-day change
- -2.01%
- since 2026-08-28
9.1379
8.91482026-08-28 → 2026-09-26
| Date | 1 EUR in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 8.9445 | 0.00% |
| 2026-09-25 | 8.9445 | +0.33% |
| 2026-09-24 | 8.9148 | -0.40% |
| 2026-09-23 | 8.9506 | -0.45% |
| 2026-09-22 | 8.9909 | -0.26% |
| 2026-09-21 | 9.0144 | +0.27% |
| 2026-09-20 | 8.9903 | 0.00% |
| 2026-09-19 | 8.9903 | 0.00% |
| 2026-09-18 | 8.9903 | -0.19% |
| 2026-09-17 | 9.0071 | -0.48% |
| 2026-09-16 | 9.0506 | -0.01% |
| 2026-09-15 | 9.0517 | -0.09% |
| 2026-09-14 | 9.0599 | -0.34% |
| 2026-09-13 | 9.0905 | 0.00% |
| 2026-09-12 | 9.0905 | 0.00% |
| Date | 1 EUR in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 9.0905 | -0.20% |
| 2026-09-10 | 9.1084 | -0.32% |
| 2026-09-09 | 9.1379 | +0.34% |
| 2026-09-08 | 9.1068 | -0.06% |
| 2026-09-07 | 9.1118 | -0.00% |
| 2026-09-06 | 9.112 | 0.00% |
| 2026-09-05 | 9.112 | 0.00% |
| 2026-09-04 | 9.112 | +0.05% |
| 2026-09-03 | 9.1077 | +0.31% |
| 2026-09-02 | 9.08 | -0.09% |
| 2026-09-01 | 9.0877 | -0.01% |
| 2026-08-31 | 9.0888 | -0.43% |
| 2026-08-30 | 9.1276 | 0.00% |
| 2026-08-29 | 9.1276 | 0.00% |
| 2026-08-28 | 9.1276 | — |
EUR to HKD conversion table
1 EUR8.9445 HKD
5 EUR44.7225 HKD
10 EUR89.445 HKD
25 EUR223.6125 HKD
50 EUR447.225 HKD
100 EUR894.45 HKD
500 EUR4,472.25 HKD
1,000 EUR8,944.5 HKD
5,000 EUR44,722.5 HKD
10,000 EUR89,445 HKD
Get the EUR/HKD rate in your app
One GET request returns the latest EUR → 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/EUR/HKD"fetch('https://rate-api.com/api/v1/pair/EUR/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/HKD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "HKD"
},
"rate": 8.9445,
"timestamp": 1790429432,
"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 EURHong Kong Dollar → Euro0.1118Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.