Convert BRL to CNY
Brazilian Real → Chinese Yuan
1 BRL = 1.295477 CNY(1 CNY = 0.771917 BRL)
Currency converter
1 BRL =
1.2955 CNY
BRL to CNY: last 30 days
Over the last 30 days, 1 BRL traded between 1.293 and 1.3242 CNY, averaging 1.3062 CNY. The BRL/CNY rate is down 0.46% since 2026-08-28.
- 30-day high
- 1.3242
- 2026-09-03
- 30-day low
- 1.293
- 2026-09-01
- 30-day average
- 1.3062
- Days with data: 30
- 30-day change
- -0.46%
- since 2026-08-28
1.3242
1.2932026-08-28 → 2026-09-26
| Date | 1 BRL in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 1.2955 | 0.00% |
| 2026-09-25 | 1.2955 | -0.01% |
| 2026-09-24 | 1.2957 | -0.86% |
| 2026-09-23 | 1.3069 | -0.07% |
| 2026-09-22 | 1.3078 | +0.16% |
| 2026-09-21 | 1.3057 | +0.12% |
| 2026-09-20 | 1.3041 | 0.00% |
| 2026-09-19 | 1.3041 | 0.00% |
| 2026-09-18 | 1.3041 | -0.25% |
| 2026-09-17 | 1.3073 | +0.30% |
| 2026-09-16 | 1.3034 | +0.04% |
| 2026-09-15 | 1.3029 | +0.15% |
| 2026-09-14 | 1.3009 | -0.89% |
| 2026-09-13 | 1.3126 | 0.00% |
| 2026-09-12 | 1.3126 | 0.00% |
| Date | 1 BRL in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 1.3126 | +0.30% |
| 2026-09-10 | 1.3086 | -0.72% |
| 2026-09-09 | 1.3181 | +0.40% |
| 2026-09-08 | 1.3129 | +0.29% |
| 2026-09-07 | 1.3092 | -0.29% |
| 2026-09-06 | 1.3129 | 0.00% |
| 2026-09-05 | 1.3129 | 0.00% |
| 2026-09-04 | 1.3129 | -0.85% |
| 2026-09-03 | 1.3242 | +1.48% |
| 2026-09-02 | 1.305 | +0.92% |
| 2026-09-01 | 1.293 | -0.48% |
| 2026-08-31 | 1.2993 | -0.17% |
| 2026-08-30 | 1.3015 | 0.00% |
| 2026-08-29 | 1.3015 | 0.00% |
| 2026-08-28 | 1.3015 | — |
BRL to CNY conversion table
1 BRL1.2955 CNY
5 BRL6.4774 CNY
10 BRL12.9548 CNY
25 BRL32.3869 CNY
50 BRL64.7738 CNY
100 BRL129.5477 CNY
500 BRL647.7382 CNY
1,000 BRL1,295.4765 CNY
5,000 BRL6,477.3823 CNY
10,000 BRL12,954.765 CNY
Get the BRL/CNY rate in your app
One GET request returns the latest BRL → 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/BRL/CNY"fetch('https://rate-api.com/api/v1/pair/BRL/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BRL = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BRL/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BRL = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BRL/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BRL = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "BRL",
"to": "CNY"
},
"rate": 1.2955,
"timestamp": 1790435099,
"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 BRLChinese Yuan → Brazilian Real0.77192Convert BRL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.