Convert CHF to CNY
Swiss Franc → Chinese Yuan
1 CHF = 8.104923 CNY(1 CNY = 0.123382 CHF)
Currency converter
1 CHF =
8.1049 CNY
CHF to CNY: last 30 days
Over the last 30 days, 1 CHF traded between 8.1049 and 8.3566 CNY, averaging 8.2272 CNY. The CHF/CNY rate is down 3.01% since 2026-08-28.
- 30-day high
- 8.3566
- 2026-08-28
- 30-day low
- 8.1049
- 2026-09-25
- 30-day average
- 8.2272
- Days with data: 30
- 30-day change
- -3.01%
- since 2026-08-28
8.3566
8.10492026-08-28 → 2026-09-26
| Date | 1 CHF in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 8.1049 | 0.00% |
| 2026-09-25 | 8.1049 | -0.06% |
| 2026-09-24 | 8.1095 | -0.51% |
| 2026-09-23 | 8.151 | -0.31% |
| 2026-09-22 | 8.1766 | +0.31% |
| 2026-09-21 | 8.1511 | +0.48% |
| 2026-09-20 | 8.1119 | 0.00% |
| 2026-09-19 | 8.1119 | 0.00% |
| 2026-09-18 | 8.1119 | -0.29% |
| 2026-09-17 | 8.1353 | -0.66% |
| 2026-09-16 | 8.1892 | -0.17% |
| 2026-09-15 | 8.203 | -0.16% |
| 2026-09-14 | 8.2163 | -0.14% |
| 2026-09-13 | 8.2279 | 0.00% |
| 2026-09-12 | 8.2279 | 0.00% |
| Date | 1 CHF in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 8.2279 | -0.38% |
| 2026-09-10 | 8.2592 | -0.63% |
| 2026-09-09 | 8.3113 | +0.51% |
| 2026-09-08 | 8.2691 | -0.29% |
| 2026-09-07 | 8.293 | +0.00% |
| 2026-09-06 | 8.2928 | 0.00% |
| 2026-09-05 | 8.2928 | 0.00% |
| 2026-09-04 | 8.2928 | -0.22% |
| 2026-09-03 | 8.3112 | +0.65% |
| 2026-09-02 | 8.2578 | -0.43% |
| 2026-09-01 | 8.2937 | -0.21% |
| 2026-08-31 | 8.3108 | -0.55% |
| 2026-08-30 | 8.3566 | 0.00% |
| 2026-08-29 | 8.3566 | 0.00% |
| 2026-08-28 | 8.3566 | — |
CHF to CNY conversion table
1 CHF8.1049 CNY
5 CHF40.5246 CNY
10 CHF81.0492 CNY
25 CHF202.6231 CNY
50 CHF405.2462 CNY
100 CHF810.4923 CNY
500 CHF4,052.4616 CNY
1,000 CHF8,104.9232 CNY
5,000 CHF40,524.616 CNY
10,000 CHF81,049.232 CNY
Get the CHF/CNY rate in your app
One GET request returns the latest CHF → 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/CHF/CNY"fetch('https://rate-api.com/api/v1/pair/CHF/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "CNY"
},
"rate": 8.1049,
"timestamp": 1790429336,
"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 CHFChinese Yuan → Swiss Franc0.12338Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.