Convert JPY to EGP
Japanese Yen → Egyptian Pound
1 JPY = 0.328577 EGP(1 EGP = 3.043427 JPY)
Currency converter
1 JPY =
0.32858 EGP
JPY to EGP: last 30 days
Over the last 30 days, 1 JPY traded between 0.31332 and 0.33527 EGP, averaging 0.3274 EGP. The JPY/EGP rate is up 4.43% since 2026-08-28.
- 30-day high
- 0.33527
- 2026-09-17
- 30-day low
- 0.31332
- 2026-08-30
- 30-day average
- 0.3274
- Days with data: 30
- 30-day change
- +4.43%
- since 2026-08-28
0.33527
0.313322026-08-28 → 2026-09-26
| Date | 1 JPY in EGP | Daily change |
|---|---|---|
| 2026-09-26 | 0.32858 | 0.00% |
| 2026-09-25 | 0.32858 | +1.51% |
| 2026-09-24 | 0.32367 | -1.00% |
| 2026-09-23 | 0.32693 | -1.02% |
| 2026-09-22 | 0.33029 | -0.19% |
| 2026-09-21 | 0.33093 | +0.22% |
| 2026-09-20 | 0.33019 | -0.15% |
| 2026-09-19 | 0.33069 | +0.17% |
| 2026-09-18 | 0.33014 | -1.53% |
| 2026-09-17 | 0.33527 | +0.16% |
| 2026-09-16 | 0.33474 | +0.35% |
| 2026-09-15 | 0.33358 | +0.36% |
| 2026-09-14 | 0.33237 | -0.32% |
| 2026-09-13 | 0.33342 | -0.03% |
| 2026-09-12 | 0.33352 | +0.03% |
| Date | 1 JPY in EGP | Daily change |
|---|---|---|
| 2026-09-11 | 0.33342 | +0.42% |
| 2026-09-10 | 0.33204 | -0.26% |
| 2026-09-09 | 0.3329 | +0.87% |
| 2026-09-08 | 0.33003 | +0.24% |
| 2026-09-07 | 0.32922 | +1.00% |
| 2026-09-06 | 0.32596 | +0.02% |
| 2026-09-05 | 0.3259 | -0.07% |
| 2026-09-04 | 0.32612 | -0.35% |
| 2026-09-03 | 0.32727 | +2.59% |
| 2026-09-02 | 0.319 | +0.34% |
| 2026-09-01 | 0.31793 | +0.09% |
| 2026-08-31 | 0.31764 | +1.38% |
| 2026-08-30 | 0.31332 | -0.13% |
| 2026-08-29 | 0.31374 | -0.28% |
| 2026-08-28 | 0.31463 | — |
JPY to EGP conversion table
1 JPY0.32858 EGP
5 JPY1.6429 EGP
10 JPY3.2858 EGP
25 JPY8.2144 EGP
50 JPY16.4288 EGP
100 JPY32.8577 EGP
500 JPY164.2885 EGP
1,000 JPY328.577 EGP
5,000 JPY1,642.8848 EGP
10,000 JPY3,285.7695 EGP
Get the JPY/EGP rate in your app
One GET request returns the latest JPY → EGP 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/EGP"fetch('https://rate-api.com/api/v1/pair/JPY/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/EGP');
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']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "EGP"
},
"rate": 0.3286,
"timestamp": 1790437924,
"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
EGP to JPYEgyptian Pound → Japanese Yen3.0434Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.