Convert RUB to CNH
Russian Ruble → Chinese Yuan (Offshore)
1 RUB = 0.0790433 CNH(1 CNH = 12.651302 RUB)
Currency converter
1 RUB =
0.079043 CNH
RUB to CNH: last 30 days
Over the last 30 days, 1 RUB traded between 0.076951 and 0.079975 CNH, averaging 0.078778 CNH. The RUB/CNH rate is up 0.51% since 2026-08-28.
- 30-day high
- 0.079975
- 2026-09-11
- 30-day low
- 0.076951
- 2026-09-03
- 30-day average
- 0.078778
- Days with data: 30
- 30-day change
- +0.51%
- since 2026-08-28
0.079975
0.0769512026-08-28 → 2026-09-26
| Date | 1 RUB in CNH | Daily change |
|---|---|---|
| 2026-09-26 | 0.079043 | 0.00% |
| 2026-09-25 | 0.079043 | -0.15% |
| 2026-09-24 | 0.079162 | -0.48% |
| 2026-09-23 | 0.079545 | -0.50% |
| 2026-09-22 | 0.079941 | +0.50% |
| 2026-09-21 | 0.079545 | -0.17% |
| 2026-09-20 | 0.079681 | +0.26% |
| 2026-09-19 | 0.079473 | +0.31% |
| 2026-09-18 | 0.079223 | -0.53% |
| 2026-09-17 | 0.079642 | -0.07% |
| 2026-09-16 | 0.079695 | +0.36% |
| 2026-09-15 | 0.079412 | +0.08% |
| 2026-09-14 | 0.079345 | -0.29% |
| 2026-09-13 | 0.079576 | -0.12% |
| 2026-09-12 | 0.079671 | -0.38% |
| Date | 1 RUB in CNH | Daily change |
|---|---|---|
| 2026-09-11 | 0.079975 | +1.35% |
| 2026-09-10 | 0.078908 | +1.00% |
| 2026-09-09 | 0.078125 | +0.36% |
| 2026-09-08 | 0.077841 | +0.44% |
| 2026-09-07 | 0.077501 | +0.00% |
| 2026-09-06 | 0.0775 | -0.85% |
| 2026-09-05 | 0.078164 | +0.84% |
| 2026-09-04 | 0.077513 | +0.73% |
| 2026-09-03 | 0.076951 | -0.63% |
| 2026-09-02 | 0.077441 | -0.54% |
| 2026-09-01 | 0.077859 | -0.46% |
| 2026-08-31 | 0.078217 | -0.04% |
| 2026-08-30 | 0.07825 | -0.27% |
| 2026-08-29 | 0.078466 | -0.23% |
| 2026-08-28 | 0.078646 | — |
RUB to CNH conversion table
1 RUB0.079043 CNH
5 RUB0.39522 CNH
10 RUB0.79043 CNH
25 RUB1.9761 CNH
50 RUB3.9522 CNH
100 RUB7.9043 CNH
500 RUB39.5216 CNH
1,000 RUB79.0433 CNH
5,000 RUB395.2163 CNH
10,000 RUB790.4325 CNH
Get the RUB/CNH rate in your app
One GET request returns the latest RUB → CNH 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/RUB/CNH"fetch('https://rate-api.com/api/v1/pair/RUB/CNH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} CNH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/CNH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} CNH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/CNH');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} CNH\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "CNH"
},
"rate": 0.079,
"timestamp": 1790429348,
"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
CNH to RUBChinese Yuan (Offshore) → Russian Ruble12.6513Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.