Convert DKK to CNY
Danish Krone → Chinese Yuan
1 DKK = 1.024025 CNY(1 CNY = 0.976539 DKK)
Currency converter
1 DKK =
1.024 CNY
DKK to CNY: last 30 days
Over the last 30 days, 1 DKK traded between 1.0207 and 1.0469 CNY, averaging 1.0368 CNY. The DKK/CNY rate is down 2.18% since 2026-08-28.
- 30-day high
- 1.0469
- 2026-08-28
- 30-day low
- 1.0207
- 2026-09-24
- 30-day average
- 1.0368
- Days with data: 30
- 30-day change
- -2.18%
- since 2026-08-28
1.0469
1.02072026-08-28 → 2026-09-26
| Date | 1 DKK in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 1.024 | 0.00% |
| 2026-09-25 | 1.024 | +0.33% |
| 2026-09-24 | 1.0207 | -0.31% |
| 2026-09-23 | 1.0238 | -0.35% |
| 2026-09-22 | 1.0274 | -0.17% |
| 2026-09-21 | 1.0291 | +0.23% |
| 2026-09-20 | 1.0268 | 0.00% |
| 2026-09-19 | 1.0268 | 0.00% |
| 2026-09-18 | 1.0268 | -0.33% |
| 2026-09-17 | 1.0302 | -0.48% |
| 2026-09-16 | 1.0351 | -0.09% |
| 2026-09-15 | 1.036 | -0.06% |
| 2026-09-14 | 1.0366 | -0.36% |
| 2026-09-13 | 1.0403 | 0.00% |
| 2026-09-12 | 1.0403 | 0.00% |
| Date | 1 DKK in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 1.0403 | -0.17% |
| 2026-09-10 | 1.0421 | -0.34% |
| 2026-09-09 | 1.0456 | +0.29% |
| 2026-09-08 | 1.0427 | -0.08% |
| 2026-09-07 | 1.0435 | +0.00% |
| 2026-09-06 | 1.0434 | 0.00% |
| 2026-09-05 | 1.0434 | 0.00% |
| 2026-09-04 | 1.0434 | -0.06% |
| 2026-09-03 | 1.0441 | +0.29% |
| 2026-09-02 | 1.0411 | -0.12% |
| 2026-09-01 | 1.0423 | -0.01% |
| 2026-08-31 | 1.0424 | -0.43% |
| 2026-08-30 | 1.0469 | 0.00% |
| 2026-08-29 | 1.0469 | 0.00% |
| 2026-08-28 | 1.0469 | — |
DKK to CNY conversion table
1 DKK1.024 CNY
5 DKK5.1201 CNY
10 DKK10.2403 CNY
25 DKK25.6006 CNY
50 DKK51.2013 CNY
100 DKK102.4025 CNY
500 DKK512.0126 CNY
1,000 DKK1,024.0251 CNY
5,000 DKK5,120.1257 CNY
10,000 DKK10,240.251 CNY
Get the DKK/CNY rate in your app
One GET request returns the latest DKK → 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/DKK/CNY"fetch('https://rate-api.com/api/v1/pair/DKK/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 DKK = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "CNY"
},
"rate": 1.024,
"timestamp": 1790432146,
"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 DKKChinese Yuan → Danish Krone0.97654Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.