Convert DKK to JPY
Danish Krone → Japanese Yen
1 DKK = 24.038526 JPY(1 JPY = 0.0415999 DKK)
Currency converter
1 DKK =
24.0385 JPY
DKK to JPY: last 30 days
Over the last 30 days, 1 DKK traded between 23.8813 and 24.8723 JPY, averaging 24.2168 JPY. The DKK/JPY rate is down 3.35% since 2026-08-28.
- 30-day high
- 24.8723
- 2026-08-28
- 30-day low
- 23.8813
- 2026-09-14
- 30-day average
- 24.2168
- Days with data: 30
- 30-day change
- -3.35%
- since 2026-08-28
24.8723
23.88132026-08-28 → 2026-09-26
| Date | 1 DKK in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 24.0385 | 0.00% |
| 2026-09-25 | 24.0385 | -0.48% |
| 2026-09-24 | 24.1546 | +0.21% |
| 2026-09-23 | 24.1051 | +0.01% |
| 2026-09-22 | 24.1018 | -0.29% |
| 2026-09-21 | 24.1727 | -0.13% |
| 2026-09-20 | 24.2051 | 0.00% |
| 2026-09-19 | 24.2051 | 0.00% |
| 2026-09-18 | 24.2051 | +1.23% |
| 2026-09-17 | 23.9118 | -0.07% |
| 2026-09-16 | 23.9289 | +0.01% |
| 2026-09-15 | 23.9264 | +0.19% |
| 2026-09-14 | 23.8813 | -0.03% |
| 2026-09-13 | 23.8888 | 0.00% |
| 2026-09-12 | 23.8888 | 0.00% |
| Date | 1 DKK in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 23.8888 | -0.29% |
| 2026-09-10 | 23.9589 | +0.28% |
| 2026-09-09 | 23.8924 | -0.34% |
| 2026-09-08 | 23.9745 | -0.36% |
| 2026-09-07 | 24.0616 | -0.96% |
| 2026-09-06 | 24.2945 | 0.00% |
| 2026-09-05 | 24.2945 | 0.00% |
| 2026-09-04 | 24.2945 | +0.21% |
| 2026-09-03 | 24.2428 | -1.93% |
| 2026-09-02 | 24.7204 | -0.45% |
| 2026-09-01 | 24.8333 | +0.22% |
| 2026-08-31 | 24.7786 | -0.38% |
| 2026-08-30 | 24.8723 | 0.00% |
| 2026-08-29 | 24.8723 | 0.00% |
| 2026-08-28 | 24.8723 | — |
DKK to JPY conversion table
1 DKK24.0385 JPY
5 DKK120.1926 JPY
10 DKK240.3853 JPY
25 DKK600.9632 JPY
50 DKK1,201.9263 JPY
100 DKK2,403.8526 JPY
500 DKK12,019.263 JPY
1,000 DKK24,038.526 JPY
5,000 DKK120,192.63 JPY
10,000 DKK240,385.26 JPY
Get the DKK/JPY rate in your app
One GET request returns the latest DKK → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/DKK/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 DKK = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/DKK/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 DKK = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/DKK/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "DKK",
"to": "JPY"
},
"rate": 24.0385,
"timestamp": 1790435094,
"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
JPY to DKKJapanese Yen → Danish Krone0.0416Convert DKK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.