Convert CNY to RUB
Chinese Yuan → Russian Ruble
1 CNY = 12.663505 RUB(1 RUB = 0.0789671 CNY)
Currency converter
1 CNY =
12.6635 RUB
CNY to RUB: last 30 days
Over the last 30 days, 1 CNY traded between 12.501 and 12.9924 RUB, averaging 12.7008 RUB. The CNY/RUB rate is down 0.42% since 2026-08-28.
- 30-day high
- 12.9924
- 2026-09-03
- 30-day low
- 12.501
- 2026-09-22
- 30-day average
- 12.7008
- Days with data: 30
- 30-day change
- -0.42%
- since 2026-08-28
12.9924
12.5012026-08-28 → 2026-09-26
| Date | 1 CNY in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 12.6635 | 0.00% |
| 2026-09-25 | 12.6635 | +0.19% |
| 2026-09-24 | 12.639 | +0.57% |
| 2026-09-23 | 12.5679 | +0.53% |
| 2026-09-22 | 12.501 | -0.55% |
| 2026-09-21 | 12.5706 | +0.13% |
| 2026-09-20 | 12.5545 | -0.37% |
| 2026-09-19 | 12.6011 | -0.12% |
| 2026-09-18 | 12.6164 | +0.47% |
| 2026-09-17 | 12.5574 | +0.03% |
| 2026-09-16 | 12.5535 | -0.31% |
| 2026-09-15 | 12.592 | -0.07% |
| 2026-09-14 | 12.6012 | +0.29% |
| 2026-09-13 | 12.5644 | +0.11% |
| 2026-09-12 | 12.5505 | +0.27% |
| Date | 1 CNY in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 12.5161 | -1.25% |
| 2026-09-10 | 12.674 | -0.97% |
| 2026-09-09 | 12.7982 | -0.41% |
| 2026-09-08 | 12.8511 | -0.43% |
| 2026-09-07 | 12.906 | +0.06% |
| 2026-09-06 | 12.8982 | +0.86% |
| 2026-09-05 | 12.7886 | -0.96% |
| 2026-09-04 | 12.9131 | -0.61% |
| 2026-09-03 | 12.9924 | +0.58% |
| 2026-09-02 | 12.9175 | +0.60% |
| 2026-09-01 | 12.8407 | +0.37% |
| 2026-08-31 | 12.7938 | -0.04% |
| 2026-08-30 | 12.7988 | -0.19% |
| 2026-08-29 | 12.8226 | +0.83% |
| 2026-08-28 | 12.7172 | — |
CNY to RUB conversion table
1 CNY12.6635 RUB
5 CNY63.3175 RUB
10 CNY126.6351 RUB
25 CNY316.5876 RUB
50 CNY633.1753 RUB
100 CNY1,266.3505 RUB
500 CNY6,331.7526 RUB
1,000 CNY12,663.505 RUB
5,000 CNY63,317.526 RUB
10,000 CNY126,635.05 RUB
Get the CNY/RUB rate in your app
One GET request returns the latest CNY → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/CNY/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "RUB"
},
"rate": 12.6635,
"timestamp": 1790429338,
"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
RUB to CNYRussian Ruble → Chinese Yuan0.078967Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.