Convert HKD to RUB
Hong Kong Dollar → Russian Ruble
1 HKD = 10.83799 RUB(1 RUB = 0.092268 HKD)
Currency converter
1 HKD =
10.838 RUB
HKD to RUB: last 30 days
Over the last 30 days, 1 HKD traded between 10.6788 and 11.1329 RUB, averaging 10.8675 RUB. The HKD/RUB rate is down 0.59% since 2026-08-28.
- 30-day high
- 11.1329
- 2026-09-03
- 30-day low
- 10.6788
- 2026-09-22
- 30-day average
- 10.8675
- Days with data: 30
- 30-day change
- -0.59%
- since 2026-08-28
11.1329
10.67882026-08-28 → 2026-09-26
| Date | 1 HKD in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 10.838 | 0.00% |
| 2026-09-25 | 10.838 | +0.19% |
| 2026-09-24 | 10.8177 | +0.66% |
| 2026-09-23 | 10.747 | +0.64% |
| 2026-09-22 | 10.6788 | -0.46% |
| 2026-09-21 | 10.7279 | +0.09% |
| 2026-09-20 | 10.7184 | -0.37% |
| 2026-09-19 | 10.7582 | -0.12% |
| 2026-09-18 | 10.7713 | +0.33% |
| 2026-09-17 | 10.7364 | +0.03% |
| 2026-09-16 | 10.7328 | -0.38% |
| 2026-09-15 | 10.7733 | -0.04% |
| 2026-09-14 | 10.7777 | +0.28% |
| 2026-09-13 | 10.7478 | +0.11% |
| 2026-09-12 | 10.7359 | +0.27% |
| Date | 1 HKD in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 10.7065 | -1.23% |
| 2026-09-10 | 10.8396 | -0.98% |
| 2026-09-09 | 10.9468 | -0.47% |
| 2026-09-08 | 10.998 | -0.45% |
| 2026-09-07 | 11.0471 | +0.06% |
| 2026-09-06 | 11.0402 | +0.86% |
| 2026-09-05 | 10.9464 | -0.96% |
| 2026-09-04 | 11.053 | -0.72% |
| 2026-09-03 | 11.1329 | +0.56% |
| 2026-09-02 | 11.0711 | +0.57% |
| 2026-09-01 | 11.0087 | +0.37% |
| 2026-08-31 | 10.9686 | -0.04% |
| 2026-08-30 | 10.9724 | -0.19% |
| 2026-08-29 | 10.9929 | +0.83% |
| 2026-08-28 | 10.9025 | — |
HKD to RUB conversion table
1 HKD10.838 RUB
5 HKD54.1899 RUB
10 HKD108.3799 RUB
25 HKD270.9497 RUB
50 HKD541.8995 RUB
100 HKD1,083.799 RUB
500 HKD5,418.9948 RUB
1,000 HKD10,837.99 RUB
5,000 HKD54,189.948 RUB
10,000 HKD108,379.9 RUB
Get the HKD/RUB rate in your app
One GET request returns the latest HKD → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/HKD/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 HKD = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/HKD/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 HKD = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/HKD/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "HKD",
"to": "RUB"
},
"rate": 10.838,
"timestamp": 1790437534,
"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
RUB to HKDRussian Ruble → Hong Kong Dollar0.092268Convert HKD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.