Convert CNY to HNL
Chinese Yuan → Honduran Lempira
1 CNY = 3.997249 HNL(1 HNL = 0.250172 CNY)
Currency converter
1 CNY =
3.9972 HNL
CNY to HNL: last 30 days
Over the last 30 days, 1 CNY traded between 3.9905 and 4.0194 HNL, averaging 4.0032 HNL. The CNY/HNL rate is up 0.09% since 2026-08-28.
- 30-day high
- 4.0194
- 2026-09-18
- 30-day low
- 3.9905
- 2026-09-03
- 30-day average
- 4.0032
- Days with data: 30
- 30-day change
- +0.09%
- since 2026-08-28
4.0194
3.99052026-08-28 → 2026-09-26
| Date | 1 CNY in HNL | Daily change |
|---|---|---|
| 2026-09-26 | 3.9972 | 0.00% |
| 2026-09-25 | 3.9972 | -0.17% |
| 2026-09-24 | 4.0041 | -0.02% |
| 2026-09-23 | 4.0047 | -0.17% |
| 2026-09-22 | 4.0114 | -0.02% |
| 2026-09-21 | 4.0121 | -0.14% |
| 2026-09-20 | 4.0177 | -0.01% |
| 2026-09-19 | 4.018 | -0.03% |
| 2026-09-18 | 4.0194 | +0.30% |
| 2026-09-17 | 4.0073 | +0.04% |
| 2026-09-16 | 4.0059 | +0.06% |
| 2026-09-15 | 4.0033 | +0.12% |
| 2026-09-14 | 3.9985 | -0.29% |
| 2026-09-13 | 4.0104 | +0.22% |
| 2026-09-12 | 4.0017 | +0.05% |
| Date | 1 CNY in HNL | Daily change |
|---|---|---|
| 2026-09-11 | 3.9998 | -0.03% |
| 2026-09-10 | 4.001 | +0.06% |
| 2026-09-09 | 3.9986 | -0.00% |
| 2026-09-08 | 3.9988 | -0.01% |
| 2026-09-07 | 3.9991 | -0.18% |
| 2026-09-06 | 4.0064 | -0.00% |
| 2026-09-05 | 4.0064 | +0.06% |
| 2026-09-04 | 4.0042 | +0.34% |
| 2026-09-03 | 3.9905 | -0.14% |
| 2026-09-02 | 3.9963 | -0.00% |
| 2026-09-01 | 3.9964 | +0.01% |
| 2026-08-31 | 3.996 | -0.11% |
| 2026-08-30 | 4.0004 | +0.00% |
| 2026-08-29 | 4.0003 | +0.17% |
| 2026-08-28 | 3.9935 | — |
CNY to HNL conversion table
1 CNY3.9972 HNL
5 CNY19.9862 HNL
10 CNY39.9725 HNL
25 CNY99.9312 HNL
50 CNY199.8625 HNL
100 CNY399.7249 HNL
500 CNY1,998.6246 HNL
1,000 CNY3,997.2492 HNL
5,000 CNY19,986.246 HNL
10,000 CNY39,972.492 HNL
Get the CNY/HNL rate in your app
One GET request returns the latest CNY → HNL 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/HNL"fetch('https://rate-api.com/api/v1/pair/CNY/HNL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} HNL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/HNL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} HNL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/HNL');
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']} HNL\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "HNL"
},
"rate": 3.9972,
"timestamp": 1790439715,
"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
HNL to CNYHonduran Lempira → Chinese Yuan0.25017Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.