Convert JPY to MYR
Japanese Yen → Malaysian Ringgit
1 JPY = 0.025852 MYR(1 MYR = 38.681763 JPY)
Currency converter
1 JPY =
0.025852 MYR
JPY to MYR: last 30 days
Over the last 30 days, 1 JPY traded between 0.025205 and 0.026554 MYR, averaging 0.025924 MYR. The JPY/MYR rate is up 2.53% since 2026-08-28.
- 30-day high
- 0.026554
- 2026-09-09
- 30-day low
- 0.025205
- 2026-08-31
- 30-day average
- 0.025924
- Days with data: 30
- 30-day change
- +2.53%
- since 2026-08-28
0.026554
0.0252052026-08-28 → 2026-09-26
| Date | 1 JPY in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 0.025852 | 0.00% |
| 2026-09-25 | 0.025852 | +0.48% |
| 2026-09-24 | 0.025728 | -0.42% |
| 2026-09-23 | 0.025836 | -0.32% |
| 2026-09-22 | 0.025919 | -0.03% |
| 2026-09-21 | 0.025927 | +0.32% |
| 2026-09-20 | 0.025844 | 0.00% |
| 2026-09-19 | 0.025844 | 0.00% |
| 2026-09-18 | 0.025844 | -1.84% |
| 2026-09-17 | 0.026328 | -0.12% |
| 2026-09-16 | 0.026359 | -0.03% |
| 2026-09-15 | 0.026368 | -0.02% |
| 2026-09-14 | 0.026373 | -0.20% |
| 2026-09-13 | 0.026425 | 0.00% |
| 2026-09-12 | 0.026425 | 0.00% |
| Date | 1 JPY in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 0.026425 | +0.21% |
| 2026-09-10 | 0.026369 | -0.70% |
| 2026-09-09 | 0.026554 | +0.88% |
| 2026-09-08 | 0.026322 | +0.68% |
| 2026-09-07 | 0.026145 | +1.01% |
| 2026-09-06 | 0.025885 | 0.00% |
| 2026-09-05 | 0.025885 | 0.00% |
| 2026-09-04 | 0.025885 | -0.08% |
| 2026-09-03 | 0.025905 | +2.20% |
| 2026-09-02 | 0.025348 | +0.50% |
| 2026-09-01 | 0.025222 | +0.07% |
| 2026-08-31 | 0.025205 | -0.03% |
| 2026-08-30 | 0.025213 | 0.00% |
| 2026-08-29 | 0.025213 | 0.00% |
| 2026-08-28 | 0.025213 | — |
JPY to MYR conversion table
1 JPY0.025852 MYR
5 JPY0.12926 MYR
10 JPY0.25852 MYR
25 JPY0.6463 MYR
50 JPY1.2926 MYR
100 JPY2.5852 MYR
500 JPY12.926 MYR
1,000 JPY25.852 MYR
5,000 JPY129.2599 MYR
10,000 JPY258.5198 MYR
Get the JPY/MYR rate in your app
One GET request returns the latest JPY → 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/JPY/MYR"fetch('https://rate-api.com/api/v1/pair/JPY/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "MYR"
},
"rate": 0.0259,
"timestamp": 1790429396,
"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 JPYMalaysian Ringgit → Japanese Yen38.6818Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.