Convert KWD to CNY
Kuwaiti Dinar → Chinese Yuan
1 KWD = 21.737708 CNY(1 CNY = 0.046003 KWD)
Currency converter
1 KWD =
21.7377 CNY
KWD to CNY: last 30 days
Over the last 30 days, 1 KWD traded between 21.7101 and 21.7823 CNY, averaging 21.7366 CNY. The KWD/CNY rate is down 0.12% since 2026-08-28.
- 30-day high
- 21.7823
- 2026-09-13
- 30-day low
- 21.7101
- 2026-09-24
- 30-day average
- 21.7366
- Days with data: 30
- 30-day change
- -0.12%
- since 2026-08-28
21.7823
21.71012026-08-28 → 2026-09-26
| Date | 1 KWD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 21.7377 | 0.00% |
| 2026-09-25 | 21.7377 | +0.13% |
| 2026-09-24 | 21.7101 | -0.09% |
| 2026-09-23 | 21.7293 | +0.06% |
| 2026-09-22 | 21.7165 | -0.02% |
| 2026-09-21 | 21.7208 | -0.00% |
| 2026-09-20 | 21.7213 | -0.04% |
| 2026-09-19 | 21.7307 | -0.17% |
| 2026-09-18 | 21.767 | +0.20% |
| 2026-09-17 | 21.7225 | -0.01% |
| 2026-09-16 | 21.7237 | -0.06% |
| 2026-09-15 | 21.7365 | -0.01% |
| 2026-09-14 | 21.7379 | -0.20% |
| 2026-09-13 | 21.7823 | +0.13% |
| 2026-09-12 | 21.7541 | +0.03% |
| Date | 1 KWD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 21.7478 | +0.09% |
| 2026-09-10 | 21.7281 | +0.04% |
| 2026-09-09 | 21.719 | -0.05% |
| 2026-09-08 | 21.7305 | +0.06% |
| 2026-09-07 | 21.7168 | -0.03% |
| 2026-09-06 | 21.7222 | +0.02% |
| 2026-09-05 | 21.7186 | -0.02% |
| 2026-09-04 | 21.7224 | -0.10% |
| 2026-09-03 | 21.7431 | +0.05% |
| 2026-09-02 | 21.7333 | -0.09% |
| 2026-09-01 | 21.7539 | -0.00% |
| 2026-08-31 | 21.7546 | -0.01% |
| 2026-08-30 | 21.7576 | -0.00% |
| 2026-08-29 | 21.7581 | -0.03% |
| 2026-08-28 | 21.7637 | — |
KWD to CNY conversion table
1 KWD21.7377 CNY
5 KWD108.6885 CNY
10 KWD217.3771 CNY
25 KWD543.4427 CNY
50 KWD1,086.8854 CNY
100 KWD2,173.7708 CNY
500 KWD10,868.854 CNY
1,000 KWD21,737.708 CNY
5,000 KWD108,688.54 CNY
10,000 KWD217,377.08 CNY
Get the KWD/CNY rate in your app
One GET request returns the latest KWD → 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/KWD/CNY"fetch('https://rate-api.com/api/v1/pair/KWD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KWD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/KWD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KWD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/KWD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 KWD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "KWD",
"to": "CNY"
},
"rate": 21.7377,
"timestamp": 1790435133,
"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 KWDChinese Yuan → Kuwaiti Dinar0.046003Convert KWD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.