Convert CNY to BDT
Chinese Yuan → Bangladeshi Taka
1 CNY = 18.346065 BDT(1 BDT = 0.0545076 CNY)
Currency converter
1 CNY =
18.3461 BDT
CNY to BDT: last 30 days
Over the last 30 days, 1 CNY traded between 18.2469 and 18.4448 BDT, averaging 18.3426 BDT. The CNY/BDT rate is up 0.12% since 2026-08-28.
- 30-day high
- 18.4448
- 2026-09-17
- 30-day low
- 18.2469
- 2026-09-03
- 30-day average
- 18.3426
- Days with data: 30
- 30-day change
- +0.12%
- since 2026-08-28
18.4448
18.24692026-08-28 → 2026-09-26
| Date | 1 CNY in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 18.3461 | 0.00% |
| 2026-09-25 | 18.3461 | -0.01% |
| 2026-09-24 | 18.3484 | +0.10% |
| 2026-09-23 | 18.3301 | -0.06% |
| 2026-09-22 | 18.3418 | -0.00% |
| 2026-09-21 | 18.3418 | -0.36% |
| 2026-09-20 | 18.4076 | +0.38% |
| 2026-09-19 | 18.3388 | +0.03% |
| 2026-09-18 | 18.3331 | -0.61% |
| 2026-09-17 | 18.4448 | +0.51% |
| 2026-09-16 | 18.3514 | +0.06% |
| 2026-09-15 | 18.3404 | -0.28% |
| 2026-09-14 | 18.3913 | +0.31% |
| 2026-09-13 | 18.334 | -0.31% |
| 2026-09-12 | 18.3903 | -0.10% |
| Date | 1 CNY in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 18.4095 | +0.31% |
| 2026-09-10 | 18.3533 | +0.28% |
| 2026-09-09 | 18.3015 | -0.05% |
| 2026-09-08 | 18.3097 | -0.07% |
| 2026-09-07 | 18.3218 | -0.37% |
| 2026-09-06 | 18.3903 | +0.42% |
| 2026-09-05 | 18.3127 | +0.02% |
| 2026-09-04 | 18.3087 | +0.34% |
| 2026-09-03 | 18.2469 | -0.08% |
| 2026-09-02 | 18.2616 | -0.05% |
| 2026-09-01 | 18.2712 | -0.73% |
| 2026-08-31 | 18.4056 | +0.41% |
| 2026-08-30 | 18.3311 | -0.07% |
| 2026-08-29 | 18.3431 | +0.10% |
| 2026-08-28 | 18.3242 | — |
CNY to BDT conversion table
1 CNY18.3461 BDT
5 CNY91.7303 BDT
10 CNY183.4607 BDT
25 CNY458.6516 BDT
50 CNY917.3033 BDT
100 CNY1,834.6065 BDT
500 CNY9,173.0325 BDT
1,000 CNY18,346.065 BDT
5,000 CNY91,730.325 BDT
10,000 CNY183,460.65 BDT
Get the CNY/BDT rate in your app
One GET request returns the latest CNY → 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/CNY/BDT"fetch('https://rate-api.com/api/v1/pair/CNY/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/BDT');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "BDT"
},
"rate": 18.3461,
"timestamp": 1790429364,
"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 CNYBangladeshi Taka → Chinese Yuan0.054508Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.