Convert CNY to BRL
Chinese Yuan → Brazilian Real
1 CNY = 0.771917 BRL(1 BRL = 1.295477 CNY)
Currency converter
1 CNY =
0.77192 BRL
CNY to BRL: last 30 days
Over the last 30 days, 1 CNY traded between 0.75516 and 0.77338 BRL, averaging 0.76562 BRL. The CNY/BRL rate is up 0.46% since 2026-08-28.
- 30-day high
- 0.77338
- 2026-09-01
- 30-day low
- 0.75516
- 2026-09-03
- 30-day average
- 0.76562
- Days with data: 30
- 30-day change
- +0.46%
- since 2026-08-28
0.77338
0.755162026-08-28 → 2026-09-26
| Date | 1 CNY in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 0.77192 | 0.00% |
| 2026-09-25 | 0.77192 | +0.01% |
| 2026-09-24 | 0.7718 | +0.87% |
| 2026-09-23 | 0.76516 | +0.07% |
| 2026-09-22 | 0.76463 | -0.16% |
| 2026-09-21 | 0.76588 | -0.12% |
| 2026-09-20 | 0.76683 | 0.00% |
| 2026-09-19 | 0.76683 | 0.00% |
| 2026-09-18 | 0.76683 | +0.25% |
| 2026-09-17 | 0.76492 | -0.30% |
| 2026-09-16 | 0.76723 | -0.04% |
| 2026-09-15 | 0.76752 | -0.15% |
| 2026-09-14 | 0.76868 | +0.89% |
| 2026-09-13 | 0.76187 | 0.00% |
| 2026-09-12 | 0.76187 | 0.00% |
| Date | 1 CNY in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 0.76187 | -0.30% |
| 2026-09-10 | 0.76416 | +0.73% |
| 2026-09-09 | 0.75865 | -0.39% |
| 2026-09-08 | 0.76166 | -0.29% |
| 2026-09-07 | 0.76384 | +0.29% |
| 2026-09-06 | 0.76166 | 0.00% |
| 2026-09-05 | 0.76166 | 0.00% |
| 2026-09-04 | 0.76166 | +0.86% |
| 2026-09-03 | 0.75516 | -1.45% |
| 2026-09-02 | 0.7663 | -0.92% |
| 2026-09-01 | 0.77338 | +0.49% |
| 2026-08-31 | 0.76965 | +0.17% |
| 2026-08-30 | 0.76836 | 0.00% |
| 2026-08-29 | 0.76836 | 0.00% |
| 2026-08-28 | 0.76836 | — |
CNY to BRL conversion table
1 CNY0.77192 BRL
5 CNY3.8596 BRL
10 CNY7.7192 BRL
25 CNY19.2979 BRL
50 CNY38.5958 BRL
100 CNY77.1917 BRL
500 CNY385.9584 BRL
1,000 CNY771.9168 BRL
5,000 CNY3,859.5838 BRL
10,000 CNY7,719.1676 BRL
Get the CNY/BRL rate in your app
One GET request returns the latest CNY → BRL 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/BRL"fetch('https://rate-api.com/api/v1/pair/CNY/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/BRL');
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']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "BRL"
},
"rate": 0.7719,
"timestamp": 1790429382,
"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
BRL to CNYBrazilian Real → Chinese Yuan1.2955Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.