Convert JPY to BDT
Japanese Yen → Bangladeshi Taka
1 JPY = 0.78153 BDT(1 BDT = 1.279541 JPY)
Currency converter
1 JPY =
0.78153 BDT
JPY to BDT: last 30 days
Over the last 30 days, 1 JPY traded between 0.76689 and 0.80171 BDT, averaging 0.7854 BDT. The JPY/BDT rate is up 1.33% since 2026-08-28.
- 30-day high
- 0.80171
- 2026-09-11
- 30-day low
- 0.76689
- 2026-09-01
- 30-day average
- 0.7854
- Days with data: 30
- 30-day change
- +1.33%
- since 2026-08-28
0.80171
0.766892026-08-28 → 2026-09-26
| Date | 1 JPY in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 0.78153 | 0.00% |
| 2026-09-25 | 0.78153 | +0.80% |
| 2026-09-24 | 0.77533 | -0.41% |
| 2026-09-23 | 0.77855 | -0.42% |
| 2026-09-22 | 0.78185 | +0.13% |
| 2026-09-21 | 0.78086 | +0.00% |
| 2026-09-20 | 0.78084 | +0.38% |
| 2026-09-19 | 0.77792 | +0.03% |
| 2026-09-18 | 0.77768 | -2.14% |
| 2026-09-17 | 0.79465 | +0.10% |
| 2026-09-16 | 0.79384 | -0.04% |
| 2026-09-15 | 0.79414 | -0.52% |
| 2026-09-14 | 0.79829 | -0.02% |
| 2026-09-13 | 0.79842 | -0.31% |
| 2026-09-12 | 0.80087 | -0.10% |
| Date | 1 JPY in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 0.80171 | +0.43% |
| 2026-09-10 | 0.79831 | -0.33% |
| 2026-09-09 | 0.80096 | +0.59% |
| 2026-09-08 | 0.79629 | +0.22% |
| 2026-09-07 | 0.79456 | +0.60% |
| 2026-09-06 | 0.78986 | +0.42% |
| 2026-09-05 | 0.78653 | +0.02% |
| 2026-09-04 | 0.78636 | +0.06% |
| 2026-09-03 | 0.78586 | +2.18% |
| 2026-09-02 | 0.76908 | +0.29% |
| 2026-09-01 | 0.76689 | -0.96% |
| 2026-08-31 | 0.77431 | +0.36% |
| 2026-08-30 | 0.77155 | -0.07% |
| 2026-08-29 | 0.77206 | +0.10% |
| 2026-08-28 | 0.77126 | — |
JPY to BDT conversion table
1 JPY0.78153 BDT
5 JPY3.9077 BDT
10 JPY7.8153 BDT
25 JPY19.5383 BDT
50 JPY39.0765 BDT
100 JPY78.153 BDT
500 JPY390.7651 BDT
1,000 JPY781.5301 BDT
5,000 JPY3,907.6506 BDT
10,000 JPY7,815.3012 BDT
Get the JPY/BDT rate in your app
One GET request returns the latest JPY → BDT 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/BDT"fetch('https://rate-api.com/api/v1/pair/JPY/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/BDT');
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']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "BDT"
},
"rate": 0.7815,
"timestamp": 1790429302,
"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
BDT to JPYBangladeshi Taka → Japanese Yen1.2795Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.