Convert RUB to UAH
Russian Ruble → Ukrainian Hryvnia
1 RUB = 0.527465 UAH(1 UAH = 1.895861 RUB)
Currency converter
1 RUB =
0.52746 UAH
RUB to UAH: last 30 days
Over the last 30 days, 1 RUB traded between 0.51103 and 0.53449 UAH, averaging 0.52395 UAH. The RUB/UAH rate is up 1.17% since 2026-08-28.
- 30-day high
- 0.53449
- 2026-09-22
- 30-day low
- 0.51103
- 2026-09-03
- 30-day average
- 0.52395
- Days with data: 30
- 30-day change
- +1.17%
- since 2026-08-28
0.53449
0.511032026-08-28 → 2026-09-26
| Date | 1 RUB in UAH | Daily change |
|---|---|---|
| 2026-09-26 | 0.52746 | 0.00% |
| 2026-09-25 | 0.52746 | -0.50% |
| 2026-09-24 | 0.53009 | -0.38% |
| 2026-09-23 | 0.53213 | -0.44% |
| 2026-09-22 | 0.53449 | +0.59% |
| 2026-09-21 | 0.53135 | +0.02% |
| 2026-09-20 | 0.53125 | +0.38% |
| 2026-09-19 | 0.52926 | +0.09% |
| 2026-09-18 | 0.52877 | -0.28% |
| 2026-09-17 | 0.53027 | +0.03% |
| 2026-09-16 | 0.53011 | +0.23% |
| 2026-09-15 | 0.52887 | +0.41% |
| 2026-09-14 | 0.52671 | -0.45% |
| 2026-09-13 | 0.52911 | +0.06% |
| 2026-09-12 | 0.52882 | -0.25% |
| Date | 1 RUB in UAH | Daily change |
|---|---|---|
| 2026-09-11 | 0.53014 | +0.86% |
| 2026-09-10 | 0.52564 | +1.11% |
| 2026-09-09 | 0.51987 | +0.94% |
| 2026-09-08 | 0.51504 | -0.09% |
| 2026-09-07 | 0.5155 | +0.02% |
| 2026-09-06 | 0.51542 | -0.67% |
| 2026-09-05 | 0.51889 | +0.65% |
| 2026-09-04 | 0.51557 | +0.89% |
| 2026-09-03 | 0.51103 | -0.37% |
| 2026-09-02 | 0.51292 | -0.48% |
| 2026-09-01 | 0.51541 | -0.83% |
| 2026-08-31 | 0.51974 | +0.31% |
| 2026-08-30 | 0.51814 | +0.11% |
| 2026-08-29 | 0.5176 | -0.72% |
| 2026-08-28 | 0.52136 | — |
RUB to UAH conversion table
1 RUB0.52746 UAH
5 RUB2.6373 UAH
10 RUB5.2746 UAH
25 RUB13.1866 UAH
50 RUB26.3732 UAH
100 RUB52.7465 UAH
500 RUB263.7324 UAH
1,000 RUB527.4648 UAH
5,000 RUB2,637.324 UAH
10,000 RUB5,274.648 UAH
Get the RUB/UAH rate in your app
One GET request returns the latest RUB → UAH 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/UAH"fetch('https://rate-api.com/api/v1/pair/RUB/UAH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} UAH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/UAH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} UAH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/UAH');
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']} UAH\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "UAH"
},
"rate": 0.5275,
"timestamp": 1790429292,
"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
UAH to RUBUkrainian Hryvnia → Russian Ruble1.8959Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.