Convert JPY to HUF
Japanese Yen → Hungarian Forint
1 JPY = 2.032721 HUF(1 HUF = 0.491951 JPY)
Currency converter
1 JPY =
2.0327 HUF
JPY to HUF: last 30 days
Over the last 30 days, 1 JPY traded between 1.9621 and 2.0465 HUF, averaging 2.0142 HUF. The JPY/HUF rate is up 3.60% since 2026-08-28.
- 30-day high
- 2.0465
- 2026-09-15
- 30-day low
- 1.9621
- 2026-08-28
- 30-day average
- 2.0142
- Days with data: 30
- 30-day change
- +3.60%
- since 2026-08-28
2.0465
1.96212026-08-28 → 2026-09-26
| Date | 1 JPY in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 2.0327 | 0.00% |
| 2026-09-25 | 2.0327 | +0.25% |
| 2026-09-24 | 2.0277 | +0.30% |
| 2026-09-23 | 2.0216 | +0.74% |
| 2026-09-22 | 2.0068 | +0.07% |
| 2026-09-21 | 2.0055 | -0.39% |
| 2026-09-20 | 2.0132 | 0.00% |
| 2026-09-19 | 2.0132 | 0.00% |
| 2026-09-18 | 2.0132 | -0.86% |
| 2026-09-17 | 2.0307 | -0.33% |
| 2026-09-16 | 2.0374 | -0.45% |
| 2026-09-15 | 2.0465 | +0.00% |
| 2026-09-14 | 2.0465 | +0.27% |
| 2026-09-13 | 2.041 | 0.00% |
| 2026-09-12 | 2.041 | 0.00% |
| Date | 1 JPY in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 2.041 | +0.22% |
| 2026-09-10 | 2.0366 | -0.06% |
| 2026-09-09 | 2.0379 | +0.34% |
| 2026-09-08 | 2.0309 | +0.57% |
| 2026-09-07 | 2.0195 | +0.95% |
| 2026-09-06 | 2.0005 | 0.00% |
| 2026-09-05 | 2.0005 | 0.00% |
| 2026-09-04 | 2.0005 | -1.34% |
| 2026-09-03 | 2.0277 | +1.76% |
| 2026-09-02 | 1.9926 | +0.86% |
| 2026-09-01 | 1.9755 | +0.43% |
| 2026-08-31 | 1.9671 | +0.25% |
| 2026-08-30 | 1.9621 | 0.00% |
| 2026-08-29 | 1.9621 | 0.00% |
| 2026-08-28 | 1.9621 | — |
JPY to HUF conversion table
1 JPY2.0327 HUF
5 JPY10.1636 HUF
10 JPY20.3272 HUF
25 JPY50.818 HUF
50 JPY101.6361 HUF
100 JPY203.2721 HUF
500 JPY1,016.3606 HUF
1,000 JPY2,032.7212 HUF
5,000 JPY10,163.606 HUF
10,000 JPY20,327.212 HUF
Get the JPY/HUF rate in your app
One GET request returns the latest JPY → HUF 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/HUF"fetch('https://rate-api.com/api/v1/pair/JPY/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/HUF');
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']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "HUF"
},
"rate": 2.0327,
"timestamp": 1790429367,
"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
HUF to JPYHungarian Forint → Japanese Yen0.49195Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.