Convert CNY to DKK
Chinese Yuan → Danish Krone
1 CNY = 0.976539 DKK(1 DKK = 1.024025 CNY)
Currency converter
1 CNY =
0.97654 DKK
CNY to DKK: last 30 days
Over the last 30 days, 1 CNY traded between 0.95523 and 0.97974 DKK, averaging 0.9646 DKK. The CNY/DKK rate is up 2.23% since 2026-08-28.
- 30-day high
- 0.97974
- 2026-09-24
- 30-day low
- 0.95523
- 2026-08-28
- 30-day average
- 0.9646
- Days with data: 30
- 30-day change
- +2.23%
- since 2026-08-28
0.97974
0.955232026-08-28 → 2026-09-26
| Date | 1 CNY in DKK | Daily change |
|---|---|---|
| 2026-09-26 | 0.97654 | 0.00% |
| 2026-09-25 | 0.97654 | -0.33% |
| 2026-09-24 | 0.97974 | +0.31% |
| 2026-09-23 | 0.97672 | +0.35% |
| 2026-09-22 | 0.97334 | +0.17% |
| 2026-09-21 | 0.97173 | -0.23% |
| 2026-09-20 | 0.97393 | 0.00% |
| 2026-09-19 | 0.97393 | 0.00% |
| 2026-09-18 | 0.97393 | +0.33% |
| 2026-09-17 | 0.9707 | +0.48% |
| 2026-09-16 | 0.96608 | +0.09% |
| 2026-09-15 | 0.96524 | +0.06% |
| 2026-09-14 | 0.9647 | +0.36% |
| 2026-09-13 | 0.96124 | 0.00% |
| 2026-09-12 | 0.96124 | 0.00% |
| Date | 1 CNY in DKK | Daily change |
|---|---|---|
| 2026-09-11 | 0.96124 | +0.17% |
| 2026-09-10 | 0.95958 | +0.34% |
| 2026-09-09 | 0.95635 | -0.29% |
| 2026-09-08 | 0.95909 | +0.08% |
| 2026-09-07 | 0.95834 | -0.00% |
| 2026-09-06 | 0.95837 | 0.00% |
| 2026-09-05 | 0.95837 | 0.00% |
| 2026-09-04 | 0.95837 | +0.06% |
| 2026-09-03 | 0.95776 | -0.29% |
| 2026-09-02 | 0.96053 | +0.12% |
| 2026-09-01 | 0.9594 | +0.01% |
| 2026-08-31 | 0.95931 | +0.43% |
| 2026-08-30 | 0.95523 | 0.00% |
| 2026-08-29 | 0.95523 | 0.00% |
| 2026-08-28 | 0.95523 | — |
CNY to DKK conversion table
1 CNY0.97654 DKK
5 CNY4.8827 DKK
10 CNY9.7654 DKK
25 CNY24.4135 DKK
50 CNY48.8269 DKK
100 CNY97.6539 DKK
500 CNY488.2693 DKK
1,000 CNY976.5385 DKK
5,000 CNY4,882.6926 DKK
10,000 CNY9,765.3852 DKK
Get the CNY/DKK rate in your app
One GET request returns the latest CNY → DKK 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/DKK"fetch('https://rate-api.com/api/v1/pair/CNY/DKK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} DKK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/DKK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} DKK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/DKK');
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']} DKK\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "DKK"
},
"rate": 0.9765,
"timestamp": 1790429373,
"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
DKK to CNYDanish Krone → Chinese Yuan1.024Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.