Convert CNY to PHP
Chinese Yuan → Philippine Peso
1 CNY = 9.306737 PHP(1 PHP = 0.107449 CNY)
Currency converter
1 CNY =
9.3067 PHP
CNY to PHP: last 30 days
Over the last 30 days, 1 CNY traded between 9.2627 and 9.3788 PHP, averaging 9.3277 PHP. The CNY/PHP rate is up 0.47% since 2026-08-28.
- 30-day high
- 9.3788
- 2026-09-21
- 30-day low
- 9.2627
- 2026-08-28
- 30-day average
- 9.3277
- Days with data: 30
- 30-day change
- +0.47%
- since 2026-08-28
9.3788
9.26272026-08-28 → 2026-09-26
| Date | 1 CNY in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 9.3067 | 0.00% |
| 2026-09-25 | 9.3067 | -0.44% |
| 2026-09-24 | 9.3481 | +0.25% |
| 2026-09-23 | 9.3249 | +0.02% |
| 2026-09-22 | 9.3228 | -0.60% |
| 2026-09-21 | 9.3788 | +0.02% |
| 2026-09-20 | 9.3769 | 0.00% |
| 2026-09-19 | 9.3769 | 0.00% |
| 2026-09-18 | 9.3769 | +0.28% |
| 2026-09-17 | 9.3504 | -0.02% |
| 2026-09-16 | 9.3526 | -0.05% |
| 2026-09-15 | 9.3574 | -0.15% |
| 2026-09-14 | 9.3715 | +0.38% |
| 2026-09-13 | 9.3362 | 0.00% |
| 2026-09-12 | 9.3362 | 0.00% |
| Date | 1 CNY in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 9.3362 | +0.06% |
| 2026-09-10 | 9.3309 | +0.16% |
| 2026-09-09 | 9.3162 | +0.01% |
| 2026-09-08 | 9.315 | -0.20% |
| 2026-09-07 | 9.3341 | -0.02% |
| 2026-09-06 | 9.3356 | 0.00% |
| 2026-09-05 | 9.3356 | 0.00% |
| 2026-09-04 | 9.3356 | +0.35% |
| 2026-09-03 | 9.3033 | -0.02% |
| 2026-09-02 | 9.3052 | +0.20% |
| 2026-09-01 | 9.2869 | +0.01% |
| 2026-08-31 | 9.2857 | +0.25% |
| 2026-08-30 | 9.2627 | 0.00% |
| 2026-08-29 | 9.2627 | 0.00% |
| 2026-08-28 | 9.2627 | — |
CNY to PHP conversion table
1 CNY9.3067 PHP
5 CNY46.5337 PHP
10 CNY93.0674 PHP
25 CNY232.6684 PHP
50 CNY465.3368 PHP
100 CNY930.6737 PHP
500 CNY4,653.3683 PHP
1,000 CNY9,306.7367 PHP
5,000 CNY46,533.683 PHP
10,000 CNY93,067.367 PHP
Get the CNY/PHP rate in your app
One GET request returns the latest CNY → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/CNY/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "PHP"
},
"rate": 9.3067,
"timestamp": 1790429244,
"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
PHP to CNYPhilippine Peso → Chinese Yuan0.10745Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.