Convert RWF to CNY
Rwandan Franc → Chinese Yuan
1 RWF = 0.00454867 CNY(1 CNY = 219.8447 RWF)
Currency converter
1 RWF =
0.0045487 CNY
RWF to CNY: last 30 days
Over the last 30 days, 1 RWF traded between 0.0045344 and 0.0045832 CNY, averaging 0.004558 CNY. The RWF/CNY rate is down 0.50% since 2026-08-28.
- 30-day high
- 0.0045832
- 2026-09-19
- 30-day low
- 0.0045344
- 2026-09-24
- 30-day average
- 0.004558
- Days with data: 30
- 30-day change
- -0.50%
- since 2026-08-28
0.0045832
0.00453442026-08-28 → 2026-09-26
| Date | 1 RWF in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0045487 | 0.00% |
| 2026-09-25 | 0.0045487 | +0.31% |
| 2026-09-24 | 0.0045344 | -0.29% |
| 2026-09-23 | 0.0045478 | -0.11% |
| 2026-09-22 | 0.0045529 | -0.22% |
| 2026-09-21 | 0.0045631 | +0.40% |
| 2026-09-20 | 0.0045447 | -0.84% |
| 2026-09-19 | 0.0045832 | +0.96% |
| 2026-09-18 | 0.0045397 | -0.46% |
| 2026-09-17 | 0.0045607 | +0.13% |
| 2026-09-16 | 0.0045547 | -0.04% |
| 2026-09-15 | 0.0045565 | -0.08% |
| 2026-09-14 | 0.0045604 | +0.11% |
| 2026-09-13 | 0.0045554 | -0.38% |
| 2026-09-12 | 0.0045727 | +0.55% |
| Date | 1 RWF in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.0045479 | -0.06% |
| 2026-09-10 | 0.0045505 | -0.23% |
| 2026-09-09 | 0.0045611 | +0.10% |
| 2026-09-08 | 0.0045566 | -0.04% |
| 2026-09-07 | 0.0045585 | +0.05% |
| 2026-09-06 | 0.0045561 | -0.15% |
| 2026-09-05 | 0.0045627 | +0.05% |
| 2026-09-04 | 0.0045604 | -0.08% |
| 2026-09-03 | 0.0045639 | +0.10% |
| 2026-09-02 | 0.0045592 | -0.12% |
| 2026-09-01 | 0.0045648 | -0.08% |
| 2026-08-31 | 0.0045685 | -0.00% |
| 2026-08-30 | 0.0045686 | +0.04% |
| 2026-08-29 | 0.0045669 | -0.10% |
| 2026-08-28 | 0.0045715 | — |
RWF to CNY conversion table
1 RWF0.0045487 CNY
5 RWF0.022743 CNY
10 RWF0.045487 CNY
25 RWF0.11372 CNY
50 RWF0.22743 CNY
100 RWF0.45487 CNY
500 RWF2.2743 CNY
1,000 RWF4.5487 CNY
5,000 RWF22.7433 CNY
10,000 RWF45.4867 CNY
Get the RWF/CNY rate in your app
One GET request returns the latest RWF → 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/RWF/CNY?precision=6"fetch('https://rate-api.com/api/v1/pair/RWF/CNY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RWF = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RWF/CNY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RWF = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RWF/CNY?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RWF = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "RWF",
"to": "CNY"
},
"rate": 0.004549,
"timestamp": 1790437535,
"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 RWFChinese Yuan → Rwandan Franc219.8447Convert RWF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.