Convert CNY to ILS
Chinese Yuan → Israeli New Shekel
1 CNY = 0.451908 ILS(1 ILS = 2.21284 CNY)
Currency converter
1 CNY =
0.45191 ILS
CNY to ILS: last 30 days
Over the last 30 days, 1 CNY traded between 0.44232 and 0.45516 ILS, averaging 0.45022 ILS. The CNY/ILS rate is up 2.17% since 2026-08-28.
- 30-day high
- 0.45516
- 2026-09-14
- 30-day low
- 0.44232
- 2026-08-28
- 30-day average
- 0.45022
- Days with data: 30
- 30-day change
- +2.17%
- since 2026-08-28
0.45516
0.442322026-08-28 → 2026-09-26
| Date | 1 CNY in ILS | Daily change |
|---|---|---|
| 2026-09-26 | 0.45191 | 0.00% |
| 2026-09-25 | 0.45191 | -0.48% |
| 2026-09-24 | 0.4541 | +0.99% |
| 2026-09-23 | 0.44967 | -0.16% |
| 2026-09-22 | 0.45041 | +0.14% |
| 2026-09-21 | 0.44979 | -0.83% |
| 2026-09-20 | 0.45355 | 0.00% |
| 2026-09-19 | 0.45355 | 0.00% |
| 2026-09-18 | 0.45355 | +0.29% |
| 2026-09-17 | 0.45223 | +0.06% |
| 2026-09-16 | 0.45194 | -0.27% |
| 2026-09-15 | 0.45315 | -0.44% |
| 2026-09-14 | 0.45516 | +0.26% |
| 2026-09-13 | 0.45397 | 0.00% |
| 2026-09-12 | 0.45397 | 0.00% |
| Date | 1 CNY in ILS | Daily change |
|---|---|---|
| 2026-09-11 | 0.45397 | +0.47% |
| 2026-09-10 | 0.45183 | +0.38% |
| 2026-09-09 | 0.4501 | +0.29% |
| 2026-09-08 | 0.44882 | +0.04% |
| 2026-09-07 | 0.44864 | +0.10% |
| 2026-09-06 | 0.44817 | 0.00% |
| 2026-09-05 | 0.44817 | 0.00% |
| 2026-09-04 | 0.44817 | -0.27% |
| 2026-09-03 | 0.44936 | -0.27% |
| 2026-09-02 | 0.45057 | +0.48% |
| 2026-09-01 | 0.44843 | +0.85% |
| 2026-08-31 | 0.44463 | +0.52% |
| 2026-08-30 | 0.44232 | 0.00% |
| 2026-08-29 | 0.44232 | 0.00% |
| 2026-08-28 | 0.44232 | — |
CNY to ILS conversion table
1 CNY0.45191 ILS
5 CNY2.2595 ILS
10 CNY4.5191 ILS
25 CNY11.2977 ILS
50 CNY22.5954 ILS
100 CNY45.1908 ILS
500 CNY225.9539 ILS
1,000 CNY451.9079 ILS
5,000 CNY2,259.5394 ILS
10,000 CNY4,519.0788 ILS
Get the CNY/ILS rate in your app
One GET request returns the latest CNY → ILS 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/ILS"fetch('https://rate-api.com/api/v1/pair/CNY/ILS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} ILS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/ILS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} ILS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/ILS');
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']} ILS\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "ILS"
},
"rate": 0.4519,
"timestamp": 1790429344,
"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
ILS to CNYIsraeli New Shekel → Chinese Yuan2.2128Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.