Convert CNY to RWF
Chinese Yuan → Rwandan Franc
1 CNY = 219.73089 RWF(1 RWF = 0.00455102 CNY)
Currency converter
1 CNY =
219.7309 RWF
CNY to RWF: last 30 days
Over the last 30 days, 1 CNY traded between 218.1903 and 220.5352 RWF, averaging 219.4234 RWF. The CNY/RWF rate is up 0.35% since 2026-08-29.
- 30-day high
- 220.5352
- 2026-09-24
- 30-day low
- 218.1903
- 2026-09-19
- 30-day average
- 219.4234
- Days with data: 30
- 30-day change
- +0.35%
- since 2026-08-29
220.5352
218.19032026-08-29 → 2026-09-27
| Date | 1 CNY in RWF | Daily change |
|---|---|---|
| 2026-09-27 | 219.7309 | 0.00% |
| 2026-09-26 | 219.7309 | -0.05% |
| 2026-09-25 | 219.8447 | -0.31% |
| 2026-09-24 | 220.5352 | +0.30% |
| 2026-09-23 | 219.8851 | +0.11% |
| 2026-09-22 | 219.6379 | +0.22% |
| 2026-09-21 | 219.1515 | -0.40% |
| 2026-09-20 | 220.0367 | +0.85% |
| 2026-09-19 | 218.1903 | -0.95% |
| 2026-09-18 | 220.2801 | +0.46% |
| 2026-09-17 | 219.2658 | -0.13% |
| 2026-09-16 | 219.5525 | +0.04% |
| 2026-09-15 | 219.465 | +0.08% |
| 2026-09-14 | 219.2805 | -0.11% |
| 2026-09-13 | 219.5216 | +0.38% |
| Date | 1 CNY in RWF | Daily change |
|---|---|---|
| 2026-09-12 | 218.6876 | -0.54% |
| 2026-09-11 | 219.8799 | +0.06% |
| 2026-09-10 | 219.7548 | +0.23% |
| 2026-09-09 | 219.2476 | -0.10% |
| 2026-09-08 | 219.4624 | +0.04% |
| 2026-09-07 | 219.3712 | -0.05% |
| 2026-09-06 | 219.4867 | +0.15% |
| 2026-09-05 | 219.1664 | -0.05% |
| 2026-09-04 | 219.2796 | +0.08% |
| 2026-09-03 | 219.1091 | -0.10% |
| 2026-09-02 | 219.3363 | +0.12% |
| 2026-09-01 | 219.0662 | +0.08% |
| 2026-08-31 | 218.8908 | +0.00% |
| 2026-08-30 | 218.8872 | -0.04% |
| 2026-08-29 | 218.9677 | — |
CNY to RWF conversion table
1 CNY219.7309 RWF
5 CNY1,098.6544 RWF
10 CNY2,197.3089 RWF
25 CNY5,493.2722 RWF
50 CNY10,986.544 RWF
100 CNY21,973.089 RWF
500 CNY109,865.44 RWF
1,000 CNY219,730.89 RWF
5,000 CNY1,098,654.4 RWF
10,000 CNY2,197,308.9 RWF
Get the CNY/RWF rate in your app
One GET request returns the latest CNY → RWF 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/RWF"fetch('https://rate-api.com/api/v1/pair/CNY/RWF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} RWF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/RWF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} RWF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/RWF');
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']} RWF\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "RWF"
},
"rate": 219.7309,
"timestamp": 1790470788,
"date": "2026-09-27"
}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
RWF to CNYRwandan Franc → Chinese Yuan0.004551Convert CNY to other currencies
Convert other currencies to RWF
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.