Convert PEN to CNY
Peruvian Sol → Chinese Yuan
1 PEN = 1.971747 CNY(1 CNY = 0.507165 PEN)
Currency converter
1 PEN =
1.9717 CNY
PEN to CNY: last 30 days
Over the last 30 days, 1 PEN traded between 1.9717 and 2.0057 CNY, averaging 1.9945 CNY. The PEN/CNY rate is down 1.69% since 2026-08-28.
- 30-day high
- 2.0057
- 2026-08-28
- 30-day low
- 1.9717
- 2026-09-25
- 30-day average
- 1.9945
- Days with data: 30
- 30-day change
- -1.69%
- since 2026-08-28
2.0057
1.97172026-08-28 → 2026-09-26
| Date | 1 PEN in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 1.9717 | 0.00% |
| 2026-09-25 | 1.9717 | -0.52% |
| 2026-09-24 | 1.982 | -0.73% |
| 2026-09-23 | 1.9966 | +0.42% |
| 2026-09-22 | 1.9882 | +0.23% |
| 2026-09-21 | 1.9836 | -0.05% |
| 2026-09-20 | 1.9846 | -0.01% |
| 2026-09-19 | 1.9847 | +0.03% |
| 2026-09-18 | 1.9842 | -0.11% |
| 2026-09-17 | 1.9863 | -0.65% |
| 2026-09-16 | 1.9992 | +0.10% |
| 2026-09-15 | 1.9973 | +0.07% |
| 2026-09-14 | 1.9958 | -0.20% |
| 2026-09-13 | 1.9997 | +0.01% |
| 2026-09-12 | 1.9996 | +0.01% |
| Date | 1 PEN in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 1.9994 | -0.13% |
| 2026-09-10 | 2.002 | +0.07% |
| 2026-09-09 | 2.0007 | +0.06% |
| 2026-09-08 | 1.9995 | -0.04% |
| 2026-09-07 | 2.0003 | -0.02% |
| 2026-09-06 | 2.0007 | -0.04% |
| 2026-09-05 | 2.0016 | +0.03% |
| 2026-09-04 | 2.0009 | +0.08% |
| 2026-09-03 | 1.9993 | +0.09% |
| 2026-09-02 | 1.9974 | -0.06% |
| 2026-09-01 | 1.9986 | +0.31% |
| 2026-08-31 | 1.9924 | -0.64% |
| 2026-08-30 | 2.0053 | +0.01% |
| 2026-08-29 | 2.0051 | -0.03% |
| 2026-08-28 | 2.0057 | — |
PEN to CNY conversion table
1 PEN1.9717 CNY
5 PEN9.8587 CNY
10 PEN19.7175 CNY
25 PEN49.2937 CNY
50 PEN98.5873 CNY
100 PEN197.1747 CNY
500 PEN985.8732 CNY
1,000 PEN1,971.7465 CNY
5,000 PEN9,858.7323 CNY
10,000 PEN19,717.465 CNY
Get the PEN/CNY rate in your app
One GET request returns the latest PEN → 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/PEN/CNY"fetch('https://rate-api.com/api/v1/pair/PEN/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "CNY"
},
"rate": 1.9717,
"timestamp": 1790437572,
"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 PENChinese Yuan → Peruvian Sol0.50716Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.