Convert CNY to CHF
Chinese Yuan → Swiss Franc
1 CNY = 0.123382 CHF(1 CHF = 8.104923 CNY)
Currency converter
1 CNY =
0.12338 CHF
CNY to CHF: last 30 days
Over the last 30 days, 1 CNY traded between 0.11967 and 0.12338 CHF, averaging 0.12156 CHF. The CNY/CHF rate is up 3.11% since 2026-08-28.
- 30-day high
- 0.12338
- 2026-09-25
- 30-day low
- 0.11967
- 2026-08-28
- 30-day average
- 0.12156
- Days with data: 30
- 30-day change
- +3.11%
- since 2026-08-28
0.12338
0.119672026-08-28 → 2026-09-26
| Date | 1 CNY in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.12338 | 0.00% |
| 2026-09-25 | 0.12338 | +0.06% |
| 2026-09-24 | 0.12331 | +0.51% |
| 2026-09-23 | 0.12268 | +0.31% |
| 2026-09-22 | 0.1223 | -0.31% |
| 2026-09-21 | 0.12268 | -0.48% |
| 2026-09-20 | 0.12328 | 0.00% |
| 2026-09-19 | 0.12328 | 0.00% |
| 2026-09-18 | 0.12328 | +0.29% |
| 2026-09-17 | 0.12292 | +0.66% |
| 2026-09-16 | 0.12211 | +0.17% |
| 2026-09-15 | 0.12191 | +0.16% |
| 2026-09-14 | 0.12171 | +0.14% |
| 2026-09-13 | 0.12154 | 0.00% |
| 2026-09-12 | 0.12154 | 0.00% |
| Date | 1 CNY in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.12154 | +0.38% |
| 2026-09-10 | 0.12108 | +0.63% |
| 2026-09-09 | 0.12032 | -0.51% |
| 2026-09-08 | 0.12093 | +0.29% |
| 2026-09-07 | 0.12058 | -0.00% |
| 2026-09-06 | 0.12059 | 0.00% |
| 2026-09-05 | 0.12059 | 0.00% |
| 2026-09-04 | 0.12059 | +0.22% |
| 2026-09-03 | 0.12032 | -0.64% |
| 2026-09-02 | 0.1211 | +0.44% |
| 2026-09-01 | 0.12057 | +0.21% |
| 2026-08-31 | 0.12033 | +0.55% |
| 2026-08-30 | 0.11967 | 0.00% |
| 2026-08-29 | 0.11967 | 0.00% |
| 2026-08-28 | 0.11967 | — |
CNY to CHF conversion table
1 CNY0.12338 CHF
5 CNY0.61691 CHF
10 CNY1.2338 CHF
25 CNY3.0845 CHF
50 CNY6.1691 CHF
100 CNY12.3382 CHF
500 CNY61.6909 CHF
1,000 CNY123.3818 CHF
5,000 CNY616.909 CHF
10,000 CNY1,233.818 CHF
Get the CNY/CHF rate in your app
One GET request returns the latest CNY → CHF 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/CHF"fetch('https://rate-api.com/api/v1/pair/CNY/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/CHF');
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']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "CHF"
},
"rate": 0.1234,
"timestamp": 1790429344,
"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
CHF to CNYSwiss Franc → Chinese Yuan8.1049Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.