Convert CNY to RON
Chinese Yuan → Romanian Leu
1 CNY = 0.689279 RON(1 RON = 1.450791 CNY)
Currency converter
1 CNY =
0.68928 RON
CNY to RON: last 30 days
Over the last 30 days, 1 CNY traded between 0.67199 and 0.69171 RON, averaging 0.67882 RON. The CNY/RON rate is up 2.57% since 2026-08-28.
- 30-day high
- 0.69171
- 2026-09-24
- 30-day low
- 0.67199
- 2026-08-28
- 30-day average
- 0.67882
- Days with data: 30
- 30-day change
- +2.57%
- since 2026-08-28
0.69171
0.671992026-08-28 → 2026-09-26
| Date | 1 CNY in RON | Daily change |
|---|---|---|
| 2026-09-26 | 0.68928 | 0.00% |
| 2026-09-25 | 0.68928 | -0.35% |
| 2026-09-24 | 0.69171 | +0.30% |
| 2026-09-23 | 0.68966 | +0.58% |
| 2026-09-22 | 0.68565 | +0.19% |
| 2026-09-21 | 0.68435 | -0.23% |
| 2026-09-20 | 0.68592 | 0.00% |
| 2026-09-19 | 0.68592 | 0.00% |
| 2026-09-18 | 0.68592 | +0.38% |
| 2026-09-17 | 0.68335 | +0.47% |
| 2026-09-16 | 0.68014 | +0.09% |
| 2026-09-15 | 0.67955 | +0.17% |
| 2026-09-14 | 0.67839 | +0.39% |
| 2026-09-13 | 0.67574 | 0.00% |
| 2026-09-12 | 0.67574 | 0.00% |
| Date | 1 CNY in RON | Daily change |
|---|---|---|
| 2026-09-11 | 0.67574 | +0.22% |
| 2026-09-10 | 0.67426 | +0.29% |
| 2026-09-09 | 0.67229 | -0.20% |
| 2026-09-08 | 0.67363 | +0.04% |
| 2026-09-07 | 0.67336 | -0.02% |
| 2026-09-06 | 0.67352 | 0.00% |
| 2026-09-05 | 0.67352 | 0.00% |
| 2026-09-04 | 0.67352 | +0.06% |
| 2026-09-03 | 0.67314 | -0.33% |
| 2026-09-02 | 0.67537 | +0.10% |
| 2026-09-01 | 0.67469 | -0.04% |
| 2026-08-31 | 0.67494 | +0.44% |
| 2026-08-30 | 0.67199 | 0.00% |
| 2026-08-29 | 0.67199 | 0.00% |
| 2026-08-28 | 0.67199 | — |
CNY to RON conversion table
1 CNY0.68928 RON
5 CNY3.4464 RON
10 CNY6.8928 RON
25 CNY17.232 RON
50 CNY34.464 RON
100 CNY68.9279 RON
500 CNY344.6395 RON
1,000 CNY689.279 RON
5,000 CNY3,446.3952 RON
10,000 CNY6,892.7904 RON
Get the CNY/RON rate in your app
One GET request returns the latest CNY → RON 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/RON"fetch('https://rate-api.com/api/v1/pair/CNY/RON', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} RON`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/RON",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} RON")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/RON');
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']} RON\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "RON"
},
"rate": 0.6893,
"timestamp": 1790429335,
"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
RON to CNYRomanian Leu → Chinese Yuan1.4508Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.