Convert PGK to CNY
Papua New Guinean Kina → Chinese Yuan
1 PGK = 1.508306 CNY(1 CNY = 0.662996 PGK)
Currency converter
1 PGK =
1.5083 CNY
PGK to CNY: last 30 days
Over the last 30 days, 1 PGK traded between 1.4886 and 1.5517 CNY, averaging 1.5115 CNY. The PGK/CNY rate is down 0.63% since 2026-08-28.
- 30-day high
- 1.5517
- 2026-08-30
- 30-day low
- 1.4886
- 2026-09-05
- 30-day average
- 1.5115
- Days with data: 30
- 30-day change
- -0.63%
- since 2026-08-28
1.5517
1.48862026-08-28 → 2026-09-26
| Date | 1 PGK in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 1.5083 | 0.00% |
| 2026-09-25 | 1.5083 | +0.66% |
| 2026-09-24 | 1.4983 | -0.46% |
| 2026-09-23 | 1.5052 | -0.71% |
| 2026-09-22 | 1.5161 | +0.52% |
| 2026-09-21 | 1.5082 | -1.86% |
| 2026-09-20 | 1.5368 | +2.04% |
| 2026-09-19 | 1.5061 | -0.04% |
| 2026-09-18 | 1.5068 | +0.25% |
| 2026-09-17 | 1.503 | +0.03% |
| 2026-09-16 | 1.5025 | -0.47% |
| 2026-09-15 | 1.5096 | +0.51% |
| 2026-09-14 | 1.5019 | -2.75% |
| 2026-09-13 | 1.5445 | -0.03% |
| 2026-09-12 | 1.5449 | +2.55% |
| Date | 1 PGK in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 1.5065 | +1.19% |
| 2026-09-10 | 1.4887 | -1.59% |
| 2026-09-09 | 1.5127 | -0.08% |
| 2026-09-08 | 1.514 | +1.05% |
| 2026-09-07 | 1.4982 | +0.64% |
| 2026-09-06 | 1.4886 | 0.00% |
| 2026-09-05 | 1.4886 | -0.23% |
| 2026-09-04 | 1.4921 | -1.02% |
| 2026-09-03 | 1.5075 | -0.80% |
| 2026-09-02 | 1.5197 | +0.04% |
| 2026-09-01 | 1.5191 | +1.66% |
| 2026-08-31 | 1.4944 | -3.69% |
| 2026-08-30 | 1.5517 | +0.49% |
| 2026-08-29 | 1.5442 | +1.73% |
| 2026-08-28 | 1.5179 | — |
PGK to CNY conversion table
1 PGK1.5083 CNY
5 PGK7.5415 CNY
10 PGK15.0831 CNY
25 PGK37.7076 CNY
50 PGK75.4153 CNY
100 PGK150.8306 CNY
500 PGK754.1528 CNY
1,000 PGK1,508.3057 CNY
5,000 PGK7,541.5284 CNY
10,000 PGK15,083.057 CNY
Get the PGK/CNY rate in your app
One GET request returns the latest PGK → 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/PGK/CNY"fetch('https://rate-api.com/api/v1/pair/PGK/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PGK = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PGK/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PGK = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PGK/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PGK = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "PGK",
"to": "CNY"
},
"rate": 1.5083,
"timestamp": 1790435066,
"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 PGKChinese Yuan → Papua New Guinean Kina0.663Convert PGK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.