Convert RUB to CNY
Russian Ruble → Chinese Yuan
1 RUB = 0.0789671 CNY(1 CNY = 12.663505 RUB)
Currency converter
1 RUB =
0.078967 CNY
RUB to CNY: last 30 days
Over the last 30 days, 1 RUB traded between 0.076968 and 0.079993 CNY, averaging 0.078745 CNY. The RUB/CNY rate is up 0.42% since 2026-08-28.
- 30-day high
- 0.079993
- 2026-09-22
- 30-day low
- 0.076968
- 2026-09-03
- 30-day average
- 0.078745
- Days with data: 30
- 30-day change
- +0.42%
- since 2026-08-28
0.079993
0.0769682026-08-28 → 2026-09-26
| Date | 1 RUB in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.078967 | 0.00% |
| 2026-09-25 | 0.078967 | -0.19% |
| 2026-09-24 | 0.07912 | -0.56% |
| 2026-09-23 | 0.079568 | -0.53% |
| 2026-09-22 | 0.079993 | +0.56% |
| 2026-09-21 | 0.079551 | -0.13% |
| 2026-09-20 | 0.079653 | +0.37% |
| 2026-09-19 | 0.079358 | +0.12% |
| 2026-09-18 | 0.079262 | -0.47% |
| 2026-09-17 | 0.079634 | -0.03% |
| 2026-09-16 | 0.079659 | +0.31% |
| 2026-09-15 | 0.079415 | +0.07% |
| 2026-09-14 | 0.079357 | -0.29% |
| 2026-09-13 | 0.07959 | -0.11% |
| 2026-09-12 | 0.079678 | -0.27% |
| Date | 1 RUB in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.079897 | +1.26% |
| 2026-09-10 | 0.078902 | +0.98% |
| 2026-09-09 | 0.078136 | +0.41% |
| 2026-09-08 | 0.077814 | +0.43% |
| 2026-09-07 | 0.077484 | -0.06% |
| 2026-09-06 | 0.07753 | -0.85% |
| 2026-09-05 | 0.078194 | +0.97% |
| 2026-09-04 | 0.077441 | +0.61% |
| 2026-09-03 | 0.076968 | -0.58% |
| 2026-09-02 | 0.077415 | -0.59% |
| 2026-09-01 | 0.077877 | -0.37% |
| 2026-08-31 | 0.078163 | +0.04% |
| 2026-08-30 | 0.078133 | +0.19% |
| 2026-08-29 | 0.077987 | -0.82% |
| 2026-08-28 | 0.078634 | — |
RUB to CNY conversion table
1 RUB0.078967 CNY
5 RUB0.39484 CNY
10 RUB0.78967 CNY
25 RUB1.9742 CNY
50 RUB3.9484 CNY
100 RUB7.8967 CNY
500 RUB39.4835 CNY
1,000 RUB78.9671 CNY
5,000 RUB394.8354 CNY
10,000 RUB789.6708 CNY
Get the RUB/CNY rate in your app
One GET request returns the latest RUB → 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/RUB/CNY"fetch('https://rate-api.com/api/v1/pair/RUB/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "CNY"
},
"rate": 0.079,
"timestamp": 1790429310,
"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 RUBChinese Yuan → Russian Ruble12.6635Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.