Convert JPY to RUB
Japanese Yen → Russian Ruble
1 JPY = 0.539457 RUB(1 RUB = 1.853716 JPY)
Currency converter
1 JPY =
0.53946 RUB
JPY to RUB: last 30 days
Over the last 30 days, 1 JPY traded between 0.53255 and 0.56011 RUB, averaging 0.54381 RUB. The JPY/RUB rate is up 0.78% since 2026-08-28.
- 30-day high
- 0.56011
- 2026-09-09
- 30-day low
- 0.53255
- 2026-09-20
- 30-day average
- 0.54381
- Days with data: 30
- 30-day change
- +0.78%
- since 2026-08-28
0.56011
0.532552026-08-28 → 2026-09-26
| Date | 1 JPY in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 0.53946 | 0.00% |
| 2026-09-25 | 0.53946 | +1.01% |
| 2026-09-24 | 0.53408 | +0.05% |
| 2026-09-23 | 0.53381 | +0.17% |
| 2026-09-22 | 0.53288 | -0.43% |
| 2026-09-21 | 0.53516 | +0.49% |
| 2026-09-20 | 0.53255 | -0.37% |
| 2026-09-19 | 0.53453 | -0.12% |
| 2026-09-18 | 0.53518 | -1.08% |
| 2026-09-17 | 0.54101 | -0.37% |
| 2026-09-16 | 0.54304 | -0.40% |
| 2026-09-15 | 0.54524 | -0.32% |
| 2026-09-14 | 0.54697 | -0.03% |
| 2026-09-13 | 0.54716 | +0.11% |
| 2026-09-12 | 0.54655 | +0.27% |
| Date | 1 JPY in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 0.54506 | -1.13% |
| 2026-09-10 | 0.55128 | -1.58% |
| 2026-09-09 | 0.56011 | +0.22% |
| 2026-09-08 | 0.55889 | -0.14% |
| 2026-09-07 | 0.55969 | +1.03% |
| 2026-09-06 | 0.55398 | +0.86% |
| 2026-09-05 | 0.54927 | -0.96% |
| 2026-09-04 | 0.55461 | -0.88% |
| 2026-09-03 | 0.55956 | +2.86% |
| 2026-09-02 | 0.54401 | +0.94% |
| 2026-09-01 | 0.53896 | +0.14% |
| 2026-08-31 | 0.53822 | -0.09% |
| 2026-08-30 | 0.5387 | -0.19% |
| 2026-08-29 | 0.5397 | +0.83% |
| 2026-08-28 | 0.53526 | — |
JPY to RUB conversion table
1 JPY0.53946 RUB
5 JPY2.6973 RUB
10 JPY5.3946 RUB
25 JPY13.4864 RUB
50 JPY26.9728 RUB
100 JPY53.9457 RUB
500 JPY269.7284 RUB
1,000 JPY539.4569 RUB
5,000 JPY2,697.2843 RUB
10,000 JPY5,394.5686 RUB
Get the JPY/RUB rate in your app
One GET request returns the latest JPY → 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/JPY/RUB"fetch('https://rate-api.com/api/v1/pair/JPY/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "RUB"
},
"rate": 0.5395,
"timestamp": 1790429286,
"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 JPYRussian Ruble → Japanese Yen1.8537Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.