Convert RUB to MYR
Russian Ruble → Malaysian Ringgit
1 RUB = 0.0479222 MYR(1 MYR = 20.867143 RUB)
Currency converter
1 RUB =
0.047922 MYR
RUB to MYR: last 30 days
Over the last 30 days, 1 RUB traded between 0.046296 and 0.048665 MYR, averaging 0.047676 MYR. The RUB/MYR rate is up 1.74% since 2026-08-28.
- 30-day high
- 0.048665
- 2026-09-17
- 30-day low
- 0.046296
- 2026-09-03
- 30-day average
- 0.047676
- Days with data: 30
- 30-day change
- +1.74%
- since 2026-08-28
0.048665
0.0462962026-08-28 → 2026-09-26
| Date | 1 RUB in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 0.047922 | 0.00% |
| 2026-09-25 | 0.047922 | -0.52% |
| 2026-09-24 | 0.048173 | -0.47% |
| 2026-09-23 | 0.0484 | -0.49% |
| 2026-09-22 | 0.04864 | +0.40% |
| 2026-09-21 | 0.048447 | -0.17% |
| 2026-09-20 | 0.048528 | +0.37% |
| 2026-09-19 | 0.048349 | +0.12% |
| 2026-09-18 | 0.04829 | -0.77% |
| 2026-09-17 | 0.048665 | +0.26% |
| 2026-09-16 | 0.04854 | +0.37% |
| 2026-09-15 | 0.04836 | +0.30% |
| 2026-09-14 | 0.048217 | -0.16% |
| 2026-09-13 | 0.048295 | -0.11% |
| 2026-09-12 | 0.048348 | -0.27% |
| Date | 1 RUB in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 0.048481 | +1.36% |
| 2026-09-10 | 0.047832 | +0.89% |
| 2026-09-09 | 0.04741 | +0.66% |
| 2026-09-08 | 0.047097 | +0.82% |
| 2026-09-07 | 0.046714 | -0.02% |
| 2026-09-06 | 0.046725 | -0.85% |
| 2026-09-05 | 0.047126 | +0.97% |
| 2026-09-04 | 0.046672 | +0.81% |
| 2026-09-03 | 0.046296 | -0.64% |
| 2026-09-02 | 0.046594 | -0.43% |
| 2026-09-01 | 0.046797 | -0.07% |
| 2026-08-31 | 0.04683 | +0.06% |
| 2026-08-30 | 0.046803 | +0.19% |
| 2026-08-29 | 0.046716 | -0.82% |
| 2026-08-28 | 0.047104 | — |
RUB to MYR conversion table
1 RUB0.047922 MYR
5 RUB0.23961 MYR
10 RUB0.47922 MYR
25 RUB1.1981 MYR
50 RUB2.3961 MYR
100 RUB4.7922 MYR
500 RUB23.9611 MYR
1,000 RUB47.9222 MYR
5,000 RUB239.6112 MYR
10,000 RUB479.2223 MYR
Get the RUB/MYR rate in your app
One GET request returns the latest RUB → MYR 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/MYR"fetch('https://rate-api.com/api/v1/pair/RUB/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "MYR"
},
"rate": 0.0479,
"timestamp": 1790429389,
"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
MYR to RUBMalaysian Ringgit → Russian Ruble20.8671Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.