Convert RUB to HKD
Russian Ruble → Hong Kong Dollar
1 RUB = 0.092268 HKD(1 HKD = 10.83799 RUB)
Currency converter
1 RUB =
0.092268 HKD
RUB to HKD: last 30 days
Over the last 30 days, 1 RUB traded between 0.089824 and 0.093643 HKD, averaging 0.092031 HKD. The RUB/HKD rate is up 0.59% since 2026-08-28.
- 30-day high
- 0.093643
- 2026-09-22
- 30-day low
- 0.089824
- 2026-09-03
- 30-day average
- 0.092031
- Days with data: 30
- 30-day change
- +0.59%
- since 2026-08-28
0.093643
0.0898242026-08-28 → 2026-09-26
| Date | 1 RUB in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 0.092268 | 0.00% |
| 2026-09-25 | 0.092268 | -0.19% |
| 2026-09-24 | 0.092441 | -0.65% |
| 2026-09-23 | 0.093049 | -0.63% |
| 2026-09-22 | 0.093643 | +0.46% |
| 2026-09-21 | 0.093215 | -0.09% |
| 2026-09-20 | 0.093297 | +0.37% |
| 2026-09-19 | 0.092952 | +0.12% |
| 2026-09-18 | 0.092839 | -0.32% |
| 2026-09-17 | 0.093141 | -0.03% |
| 2026-09-16 | 0.093172 | +0.38% |
| 2026-09-15 | 0.092822 | +0.04% |
| 2026-09-14 | 0.092784 | -0.28% |
| 2026-09-13 | 0.093042 | -0.11% |
| 2026-09-12 | 0.093145 | -0.27% |
| Date | 1 RUB in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 0.093401 | +1.24% |
| 2026-09-10 | 0.092254 | +0.99% |
| 2026-09-09 | 0.091351 | +0.47% |
| 2026-09-08 | 0.090926 | +0.45% |
| 2026-09-07 | 0.090521 | -0.06% |
| 2026-09-06 | 0.090578 | -0.85% |
| 2026-09-05 | 0.091354 | +0.97% |
| 2026-09-04 | 0.090473 | +0.72% |
| 2026-09-03 | 0.089824 | -0.56% |
| 2026-09-02 | 0.090326 | -0.56% |
| 2026-09-01 | 0.090837 | -0.36% |
| 2026-08-31 | 0.09117 | +0.04% |
| 2026-08-30 | 0.091138 | +0.19% |
| 2026-08-29 | 0.090968 | -0.82% |
| 2026-08-28 | 0.091722 | — |
RUB to HKD conversion table
1 RUB0.092268 HKD
5 RUB0.46134 HKD
10 RUB0.92268 HKD
25 RUB2.3067 HKD
50 RUB4.6134 HKD
100 RUB9.2268 HKD
500 RUB46.134 HKD
1,000 RUB92.268 HKD
5,000 RUB461.3402 HKD
10,000 RUB922.6803 HKD
Get the RUB/HKD rate in your app
One GET request returns the latest RUB → 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/RUB/HKD"fetch('https://rate-api.com/api/v1/pair/RUB/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/HKD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "HKD"
},
"rate": 0.0923,
"timestamp": 1790429355,
"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 RUBHong Kong Dollar → Russian Ruble10.838Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.