Convert JPY to PHP
Japanese Yen → Philippine Peso
1 JPY = 0.396461 PHP(1 PHP = 2.522318 JPY)
Currency converter
1 JPY =
0.39646 PHP
JPY to PHP: last 30 days
Over the last 30 days, 1 JPY traded between 0.38979 and 0.40772 PHP, averaging 0.3994 PHP. The JPY/PHP rate is up 1.69% since 2026-08-28.
- 30-day high
- 0.40772
- 2026-09-09
- 30-day low
- 0.38979
- 2026-09-01
- 30-day average
- 0.3994
- Days with data: 30
- 30-day change
- +1.69%
- since 2026-08-28
0.40772
0.389792026-08-28 → 2026-09-26
| Date | 1 JPY in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 0.39646 | 0.00% |
| 2026-09-25 | 0.39646 | +0.37% |
| 2026-09-24 | 0.39502 | -0.27% |
| 2026-09-23 | 0.39607 | -0.34% |
| 2026-09-22 | 0.3974 | -0.47% |
| 2026-09-21 | 0.39928 | +0.38% |
| 2026-09-20 | 0.39776 | 0.00% |
| 2026-09-19 | 0.39776 | 0.00% |
| 2026-09-18 | 0.39776 | -1.26% |
| 2026-09-17 | 0.40284 | -0.43% |
| 2026-09-16 | 0.40457 | -0.15% |
| 2026-09-15 | 0.40517 | -0.40% |
| 2026-09-14 | 0.40678 | +0.05% |
| 2026-09-13 | 0.40658 | 0.00% |
| 2026-09-12 | 0.40658 | 0.00% |
| Date | 1 JPY in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 0.40658 | +0.18% |
| 2026-09-10 | 0.40586 | -0.46% |
| 2026-09-09 | 0.40772 | +0.64% |
| 2026-09-08 | 0.40511 | +0.08% |
| 2026-09-07 | 0.40479 | +0.95% |
| 2026-09-06 | 0.40096 | 0.00% |
| 2026-09-05 | 0.40096 | 0.00% |
| 2026-09-04 | 0.40096 | +0.07% |
| 2026-09-03 | 0.40068 | +2.24% |
| 2026-09-02 | 0.39189 | +0.54% |
| 2026-09-01 | 0.38979 | -0.22% |
| 2026-08-31 | 0.39064 | +0.20% |
| 2026-08-30 | 0.38987 | 0.00% |
| 2026-08-29 | 0.38987 | 0.00% |
| 2026-08-28 | 0.38987 | — |
JPY to PHP conversion table
1 JPY0.39646 PHP
5 JPY1.9823 PHP
10 JPY3.9646 PHP
25 JPY9.9115 PHP
50 JPY19.823 PHP
100 JPY39.6461 PHP
500 JPY198.2304 PHP
1,000 JPY396.4608 PHP
5,000 JPY1,982.3038 PHP
10,000 JPY3,964.6077 PHP
Get the JPY/PHP rate in your app
One GET request returns the latest JPY → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/JPY/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "PHP"
},
"rate": 0.3965,
"timestamp": 1790429235,
"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
PHP to JPYPhilippine Peso → Japanese Yen2.5223Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.