Convert CNY to EUR
Chinese Yuan → Euro
1 CNY = 0.130632 EUR(1 EUR = 7.6551 CNY)
Currency converter
1 CNY =
0.13063 EUR
CNY to EUR: last 30 days
Over the last 30 days, 1 CNY traded between 0.12779 and 0.13106 EUR, averaging 0.12914 EUR. The CNY/EUR rate is up 2.22% since 2026-08-29.
- 30-day high
- 0.13106
- 2026-09-24
- 30-day low
- 0.12779
- 2026-08-29
- 30-day average
- 0.12914
- Days with data: 30
- 30-day change
- +2.22%
- since 2026-08-29
0.13106
0.127792026-08-29 → 2026-09-27
| Date | 1 CNY in EUR | Daily change |
|---|---|---|
| 2026-09-27 | 0.13063 | 0.00% |
| 2026-09-26 | 0.13063 | 0.00% |
| 2026-09-25 | 0.13063 | -0.33% |
| 2026-09-24 | 0.13106 | +0.31% |
| 2026-09-23 | 0.13065 | +0.35% |
| 2026-09-22 | 0.1302 | +0.17% |
| 2026-09-21 | 0.12999 | -0.23% |
| 2026-09-20 | 0.13029 | 0.00% |
| 2026-09-19 | 0.13029 | 0.00% |
| 2026-09-18 | 0.13029 | +0.33% |
| 2026-09-17 | 0.12985 | +0.48% |
| 2026-09-16 | 0.12923 | +0.08% |
| 2026-09-15 | 0.12913 | +0.06% |
| 2026-09-14 | 0.12905 | +0.35% |
| 2026-09-13 | 0.1286 | 0.00% |
| Date | 1 CNY in EUR | Daily change |
|---|---|---|
| 2026-09-12 | 0.1286 | 0.00% |
| 2026-09-11 | 0.1286 | +0.18% |
| 2026-09-10 | 0.12837 | +0.33% |
| 2026-09-09 | 0.12794 | -0.29% |
| 2026-09-08 | 0.12831 | +0.08% |
| 2026-09-07 | 0.12821 | -0.00% |
| 2026-09-06 | 0.12822 | 0.00% |
| 2026-09-05 | 0.12822 | 0.00% |
| 2026-09-04 | 0.12822 | +0.06% |
| 2026-09-03 | 0.12814 | -0.28% |
| 2026-09-02 | 0.1285 | +0.12% |
| 2026-09-01 | 0.12835 | +0.01% |
| 2026-08-31 | 0.12833 | +0.42% |
| 2026-08-30 | 0.12779 | 0.00% |
| 2026-08-29 | 0.12779 | — |
CNY to EUR conversion table
1 CNY0.13063 EUR
5 CNY0.65316 EUR
10 CNY1.3063 EUR
25 CNY3.2658 EUR
50 CNY6.5316 EUR
100 CNY13.0632 EUR
500 CNY65.3159 EUR
1,000 CNY130.6319 EUR
5,000 CNY653.1593 EUR
10,000 CNY1,306.3187 EUR
Get the CNY/EUR rate in your app
One GET request returns the latest CNY → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/CNY/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "EUR"
},
"rate": 0.1306,
"timestamp": 1790470819,
"date": "2026-09-27"
}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
EUR to CNYEuro → Chinese Yuan7.6551Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.