Convert BND to CNY
Brunei Dollar → Chinese Yuan
1 BND = 5.256541 CNY(1 CNY = 0.190239 BND)
Currency converter
1 BND =
5.2565 CNY
BND to CNY: last 30 days
Over the last 30 days, 1 BND traded between 5.2445 and 5.3056 CNY, averaging 5.2761 CNY. The BND/CNY rate is down 0.60% since 2026-08-28.
- 30-day high
- 5.3056
- 2026-09-08
- 30-day low
- 5.2445
- 2026-09-24
- 30-day average
- 5.2761
- Days with data: 30
- 30-day change
- -0.60%
- since 2026-08-28
5.3056
5.24452026-08-28 → 2026-09-26
| Date | 1 BND in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 5.2565 | 0.00% |
| 2026-09-25 | 5.2565 | +0.23% |
| 2026-09-24 | 5.2445 | -0.05% |
| 2026-09-23 | 5.247 | -0.11% |
| 2026-09-22 | 5.253 | +0.07% |
| 2026-09-21 | 5.2491 | +0.01% |
| 2026-09-20 | 5.2488 | -0.01% |
| 2026-09-19 | 5.2491 | -0.01% |
| 2026-09-18 | 5.2498 | -0.10% |
| 2026-09-17 | 5.2552 | -0.25% |
| 2026-09-16 | 5.2684 | -0.15% |
| 2026-09-15 | 5.2763 | -0.19% |
| 2026-09-14 | 5.2863 | -0.16% |
| 2026-09-13 | 5.295 | -0.01% |
| 2026-09-12 | 5.2953 | +0.13% |
| Date | 1 BND in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 5.2887 | -0.31% |
| 2026-09-10 | 5.3054 | +0.02% |
| 2026-09-09 | 5.3044 | -0.02% |
| 2026-09-08 | 5.3056 | +0.21% |
| 2026-09-07 | 5.2943 | -0.03% |
| 2026-09-06 | 5.2958 | +0.11% |
| 2026-09-05 | 5.2898 | -0.10% |
| 2026-09-04 | 5.2952 | +0.07% |
| 2026-09-03 | 5.2916 | +0.26% |
| 2026-09-02 | 5.2778 | -0.14% |
| 2026-09-01 | 5.2852 | +0.11% |
| 2026-08-31 | 5.2791 | +0.03% |
| 2026-08-30 | 5.2774 | +0.10% |
| 2026-08-29 | 5.272 | -0.31% |
| 2026-08-28 | 5.2882 | — |
BND to CNY conversion table
1 BND5.2565 CNY
5 BND26.2827 CNY
10 BND52.5654 CNY
25 BND131.4135 CNY
50 BND262.827 CNY
100 BND525.6541 CNY
500 BND2,628.2703 CNY
1,000 BND5,256.5405 CNY
5,000 BND26,282.703 CNY
10,000 BND52,565.405 CNY
Get the BND/CNY rate in your app
One GET request returns the latest BND → 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/BND/CNY"fetch('https://rate-api.com/api/v1/pair/BND/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BND = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BND/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BND = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BND/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BND = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "BND",
"to": "CNY"
},
"rate": 5.2565,
"timestamp": 1790435069,
"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 BNDChinese Yuan → Brunei Dollar0.19024Convert BND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.