Convert CNY to BND
Chinese Yuan → Brunei Dollar
1 CNY = 0.190239 BND(1 BND = 5.256541 CNY)
Currency converter
1 CNY =
0.19024 BND
CNY to BND: last 30 days
Over the last 30 days, 1 CNY traded between 0.18848 and 0.19068 BND, averaging 0.18954 BND. The CNY/BND rate is up 0.60% since 2026-08-28.
- 30-day high
- 0.19068
- 2026-09-24
- 30-day low
- 0.18848
- 2026-09-08
- 30-day average
- 0.18954
- Days with data: 30
- 30-day change
- +0.60%
- since 2026-08-28
0.19068
0.188482026-08-28 → 2026-09-26
| Date | 1 CNY in BND | Daily change |
|---|---|---|
| 2026-09-26 | 0.19024 | 0.00% |
| 2026-09-25 | 0.19024 | -0.23% |
| 2026-09-24 | 0.19068 | +0.05% |
| 2026-09-23 | 0.19059 | +0.11% |
| 2026-09-22 | 0.19037 | -0.07% |
| 2026-09-21 | 0.19051 | -0.01% |
| 2026-09-20 | 0.19052 | +0.01% |
| 2026-09-19 | 0.19051 | +0.01% |
| 2026-09-18 | 0.19048 | +0.10% |
| 2026-09-17 | 0.19029 | +0.25% |
| 2026-09-16 | 0.18981 | +0.15% |
| 2026-09-15 | 0.18953 | +0.19% |
| 2026-09-14 | 0.18917 | +0.16% |
| 2026-09-13 | 0.18886 | +0.01% |
| 2026-09-12 | 0.18885 | -0.13% |
| Date | 1 CNY in BND | Daily change |
|---|---|---|
| 2026-09-11 | 0.18908 | +0.32% |
| 2026-09-10 | 0.18849 | -0.02% |
| 2026-09-09 | 0.18852 | +0.02% |
| 2026-09-08 | 0.18848 | -0.21% |
| 2026-09-07 | 0.18888 | +0.03% |
| 2026-09-06 | 0.18883 | -0.11% |
| 2026-09-05 | 0.18904 | +0.10% |
| 2026-09-04 | 0.18885 | -0.07% |
| 2026-09-03 | 0.18898 | -0.26% |
| 2026-09-02 | 0.18947 | +0.14% |
| 2026-09-01 | 0.18921 | -0.11% |
| 2026-08-31 | 0.18943 | -0.03% |
| 2026-08-30 | 0.18949 | -0.10% |
| 2026-08-29 | 0.18968 | +0.31% |
| 2026-08-28 | 0.1891 | — |
CNY to BND conversion table
1 CNY0.19024 BND
5 CNY0.9512 BND
10 CNY1.9024 BND
25 CNY4.756 BND
50 CNY9.512 BND
100 CNY19.0239 BND
500 CNY95.1196 BND
1,000 CNY190.2392 BND
5,000 CNY951.1959 BND
10,000 CNY1,902.3919 BND
Get the CNY/BND rate in your app
One GET request returns the latest CNY → BND 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/BND"fetch('https://rate-api.com/api/v1/pair/CNY/BND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} BND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/BND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} BND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/BND');
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']} BND\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "BND"
},
"rate": 0.1902,
"timestamp": 1790429360,
"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
BND to CNYBrunei Dollar → Chinese Yuan5.2565Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.