Convert CNY to PEN
Chinese Yuan → Peruvian Sol
1 CNY = 0.507165 PEN(1 PEN = 1.971747 CNY)
Currency converter
1 CNY =
0.50716 PEN
CNY to PEN: last 30 days
Over the last 30 days, 1 CNY traded between 0.49859 and 0.50716 PEN, averaging 0.5014 PEN. The CNY/PEN rate is up 1.72% since 2026-08-28.
- 30-day high
- 0.50716
- 2026-09-25
- 30-day low
- 0.49859
- 2026-08-28
- 30-day average
- 0.5014
- Days with data: 30
- 30-day change
- +1.72%
- since 2026-08-28
0.50716
0.498592026-08-28 → 2026-09-26
| Date | 1 CNY in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 0.50716 | 0.00% |
| 2026-09-25 | 0.50716 | +0.52% |
| 2026-09-24 | 0.50454 | +0.73% |
| 2026-09-23 | 0.50086 | -0.42% |
| 2026-09-22 | 0.50296 | -0.23% |
| 2026-09-21 | 0.50413 | +0.05% |
| 2026-09-20 | 0.50388 | +0.01% |
| 2026-09-19 | 0.50385 | -0.03% |
| 2026-09-18 | 0.50399 | +0.11% |
| 2026-09-17 | 0.50346 | +0.65% |
| 2026-09-16 | 0.50019 | -0.10% |
| 2026-09-15 | 0.50068 | -0.07% |
| 2026-09-14 | 0.50105 | +0.20% |
| 2026-09-13 | 0.50007 | -0.01% |
| 2026-09-12 | 0.50011 | -0.01% |
| Date | 1 CNY in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 0.50014 | +0.13% |
| 2026-09-10 | 0.49949 | -0.07% |
| 2026-09-09 | 0.49981 | -0.06% |
| 2026-09-08 | 0.50012 | +0.04% |
| 2026-09-07 | 0.49994 | +0.02% |
| 2026-09-06 | 0.49982 | +0.04% |
| 2026-09-05 | 0.4996 | -0.03% |
| 2026-09-04 | 0.49976 | -0.08% |
| 2026-09-03 | 0.50019 | -0.09% |
| 2026-09-02 | 0.50065 | +0.06% |
| 2026-09-01 | 0.50035 | -0.31% |
| 2026-08-31 | 0.5019 | +0.64% |
| 2026-08-30 | 0.49869 | -0.01% |
| 2026-08-29 | 0.49872 | +0.03% |
| 2026-08-28 | 0.49859 | — |
CNY to PEN conversion table
1 CNY0.50716 PEN
5 CNY2.5358 PEN
10 CNY5.0716 PEN
25 CNY12.6791 PEN
50 CNY25.3582 PEN
100 CNY50.7165 PEN
500 CNY253.5823 PEN
1,000 CNY507.1646 PEN
5,000 CNY2,535.823 PEN
10,000 CNY5,071.646 PEN
Get the CNY/PEN rate in your app
One GET request returns the latest CNY → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/CNY/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "PEN"
},
"rate": 0.5072,
"timestamp": 1790429362,
"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
PEN to CNYPeruvian Sol → Chinese Yuan1.9717Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.