Convert RUB to HUF
Russian Ruble → Hungarian Forint
1 RUB = 3.768089 HUF(1 HUF = 0.265387 RUB)
Currency converter
1 RUB =
3.7681 HUF
RUB to HUF: last 30 days
Over the last 30 days, 1 RUB traded between 3.607 and 3.7967 HUF, averaging 3.7046 HUF. The RUB/HUF rate is up 2.79% since 2026-08-28.
- 30-day high
- 3.7967
- 2026-09-24
- 30-day low
- 3.607
- 2026-09-04
- 30-day average
- 3.7046
- Days with data: 30
- 30-day change
- +2.79%
- since 2026-08-28
3.7967
3.6072026-08-28 → 2026-09-26
| Date | 1 RUB in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 3.7681 | 0.00% |
| 2026-09-25 | 3.7681 | -0.75% |
| 2026-09-24 | 3.7967 | +0.25% |
| 2026-09-23 | 3.7871 | +0.56% |
| 2026-09-22 | 3.766 | +0.50% |
| 2026-09-21 | 3.7474 | -0.87% |
| 2026-09-20 | 3.7803 | +0.37% |
| 2026-09-19 | 3.7664 | +0.12% |
| 2026-09-18 | 3.7618 | +0.22% |
| 2026-09-17 | 3.7536 | +0.05% |
| 2026-09-16 | 3.7519 | -0.04% |
| 2026-09-15 | 3.7535 | +0.32% |
| 2026-09-14 | 3.7415 | +0.30% |
| 2026-09-13 | 3.7302 | -0.11% |
| 2026-09-12 | 3.7344 | -0.27% |
| Date | 1 RUB in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 3.7446 | +1.36% |
| 2026-09-10 | 3.6944 | +1.54% |
| 2026-09-09 | 3.6384 | +0.13% |
| 2026-09-08 | 3.6338 | +0.71% |
| 2026-09-07 | 3.6082 | -0.08% |
| 2026-09-06 | 3.6112 | -0.85% |
| 2026-09-05 | 3.6421 | +0.97% |
| 2026-09-04 | 3.607 | -0.46% |
| 2026-09-03 | 3.6237 | -1.07% |
| 2026-09-02 | 3.6628 | -0.07% |
| 2026-09-01 | 3.6655 | +0.29% |
| 2026-08-31 | 3.6547 | +0.34% |
| 2026-08-30 | 3.6423 | +0.19% |
| 2026-08-29 | 3.6355 | -0.82% |
| 2026-08-28 | 3.6657 | — |
RUB to HUF conversion table
1 RUB3.7681 HUF
5 RUB18.8404 HUF
10 RUB37.6809 HUF
25 RUB94.2022 HUF
50 RUB188.4044 HUF
100 RUB376.8089 HUF
500 RUB1,884.0442 HUF
1,000 RUB3,768.0885 HUF
5,000 RUB18,840.442 HUF
10,000 RUB37,680.885 HUF
Get the RUB/HUF rate in your app
One GET request returns the latest RUB → HUF 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/HUF"fetch('https://rate-api.com/api/v1/pair/RUB/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/HUF');
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']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "HUF"
},
"rate": 3.7681,
"timestamp": 1790437574,
"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
HUF to RUBHungarian Forint → Russian Ruble0.26539Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.