Convert MYR to JPY
Malaysian Ringgit → Japanese Yen
1 MYR = 38.681763 JPY(1 JPY = 0.025852 MYR)
Currency converter
1 MYR =
38.6818 JPY
MYR to JPY: last 30 days
Over the last 30 days, 1 MYR traded between 37.6585 and 39.6746 JPY, averaging 38.5848 JPY. The MYR/JPY rate is down 2.47% since 2026-08-28.
- 30-day high
- 39.6746
- 2026-08-31
- 30-day low
- 37.6585
- 2026-09-09
- 30-day average
- 38.5848
- Days with data: 30
- 30-day change
- -2.47%
- since 2026-08-28
39.6746
37.65852026-08-28 → 2026-09-26
| Date | 1 MYR in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 38.6818 | 0.00% |
| 2026-09-25 | 38.6818 | -0.48% |
| 2026-09-24 | 38.8682 | +0.42% |
| 2026-09-23 | 38.7052 | +0.32% |
| 2026-09-22 | 38.5812 | +0.03% |
| 2026-09-21 | 38.5702 | -0.32% |
| 2026-09-20 | 38.6938 | 0.00% |
| 2026-09-19 | 38.6938 | 0.00% |
| 2026-09-18 | 38.6938 | +1.87% |
| 2026-09-17 | 37.9824 | +0.12% |
| 2026-09-16 | 37.9374 | +0.03% |
| 2026-09-15 | 37.9251 | +0.02% |
| 2026-09-14 | 37.9171 | +0.20% |
| 2026-09-13 | 37.843 | 0.00% |
| 2026-09-12 | 37.843 | 0.00% |
| Date | 1 MYR in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 37.843 | -0.21% |
| 2026-09-10 | 37.924 | +0.71% |
| 2026-09-09 | 37.6585 | -0.87% |
| 2026-09-08 | 37.9909 | -0.67% |
| 2026-09-07 | 38.2477 | -1.00% |
| 2026-09-06 | 38.6327 | 0.00% |
| 2026-09-05 | 38.6327 | 0.00% |
| 2026-09-04 | 38.6327 | +0.08% |
| 2026-09-03 | 38.602 | -2.15% |
| 2026-09-02 | 39.4512 | -0.50% |
| 2026-09-01 | 39.6485 | -0.07% |
| 2026-08-31 | 39.6746 | +0.03% |
| 2026-08-30 | 39.6622 | 0.00% |
| 2026-08-29 | 39.6622 | 0.00% |
| 2026-08-28 | 39.6622 | — |
MYR to JPY conversion table
1 MYR38.6818 JPY
5 MYR193.4088 JPY
10 MYR386.8176 JPY
25 MYR967.0441 JPY
50 MYR1,934.0882 JPY
100 MYR3,868.1763 JPY
500 MYR19,340.882 JPY
1,000 MYR38,681.763 JPY
5,000 MYR193,408.82 JPY
10,000 MYR386,817.63 JPY
Get the MYR/JPY rate in your app
One GET request returns the latest MYR → JPY 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/MYR/JPY"fetch('https://rate-api.com/api/v1/pair/MYR/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "JPY"
},
"rate": 38.6818,
"timestamp": 1790435150,
"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
JPY to MYRJapanese Yen → Malaysian Ringgit0.025852Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.