Convert BDT to CNY
Bangladeshi Taka → Chinese Yuan
1 BDT = 0.0545076 CNY(1 CNY = 18.346065 BDT)
Currency converter
1 BDT =
0.054508 CNY
BDT to CNY: last 30 days
Over the last 30 days, 1 BDT traded between 0.054216 and 0.054804 CNY, averaging 0.054518 CNY. The BDT/CNY rate is down 0.12% since 2026-08-28.
- 30-day high
- 0.054804
- 2026-09-03
- 30-day low
- 0.054216
- 2026-09-17
- 30-day average
- 0.054518
- Days with data: 30
- 30-day change
- -0.12%
- since 2026-08-28
0.054804
0.0542162026-08-28 → 2026-09-26
| Date | 1 BDT in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.054508 | 0.00% |
| 2026-09-25 | 0.054508 | +0.01% |
| 2026-09-24 | 0.054501 | -0.10% |
| 2026-09-23 | 0.054555 | +0.06% |
| 2026-09-22 | 0.05452 | +0.00% |
| 2026-09-21 | 0.05452 | +0.36% |
| 2026-09-20 | 0.054325 | -0.37% |
| 2026-09-19 | 0.054529 | -0.03% |
| 2026-09-18 | 0.054546 | +0.61% |
| 2026-09-17 | 0.054216 | -0.51% |
| 2026-09-16 | 0.054492 | -0.06% |
| 2026-09-15 | 0.054525 | +0.28% |
| 2026-09-14 | 0.054374 | -0.31% |
| 2026-09-13 | 0.054543 | +0.31% |
| 2026-09-12 | 0.054376 | +0.10% |
| Date | 1 BDT in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.05432 | -0.31% |
| 2026-09-10 | 0.054486 | -0.28% |
| 2026-09-09 | 0.05464 | +0.05% |
| 2026-09-08 | 0.054616 | +0.07% |
| 2026-09-07 | 0.05458 | +0.37% |
| 2026-09-06 | 0.054377 | -0.42% |
| 2026-09-05 | 0.054607 | -0.02% |
| 2026-09-04 | 0.054619 | -0.34% |
| 2026-09-03 | 0.054804 | +0.08% |
| 2026-09-02 | 0.05476 | +0.05% |
| 2026-09-01 | 0.054731 | +0.74% |
| 2026-08-31 | 0.054331 | -0.40% |
| 2026-08-30 | 0.054552 | +0.07% |
| 2026-08-29 | 0.054516 | -0.10% |
| 2026-08-28 | 0.054573 | — |
BDT to CNY conversion table
1 BDT0.054508 CNY
5 BDT0.27254 CNY
10 BDT0.54508 CNY
25 BDT1.3627 CNY
50 BDT2.7254 CNY
100 BDT5.4508 CNY
500 BDT27.2538 CNY
1,000 BDT54.5076 CNY
5,000 BDT272.538 CNY
10,000 BDT545.076 CNY
Get the BDT/CNY rate in your app
One GET request returns the latest BDT → CNY 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/BDT/CNY"fetch('https://rate-api.com/api/v1/pair/BDT/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BDT = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BDT/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BDT = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BDT/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BDT = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "BDT",
"to": "CNY"
},
"rate": 0.0545,
"timestamp": 1790435078,
"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
CNY to BDTChinese Yuan → Bangladeshi Taka18.3461Convert BDT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.