kr.
Icelandic Króna
fiatISO Code: ISKNumeric: 352Decimals: 0Region: Europe
🇮🇸
Developer Note
No minor unit.
Formatting Examples
| Value | en-US |
|---|---|
| 1 | ISK 1 |
| 9.99 | ISK 10 |
| 100 | ISK 100 |
| 1234.56 | ISK 1,235 |
| 1000000 | ISK 1,000,000 |
Intl.NumberFormat
JavaScript
// Basic ISK formatting
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'ISK',
}).format(1234.00);
// → "ISK 1,234"
// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'ISK',
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(99);
// ISO 4217 minor unit: 0 decimal places
// Stripe / payment API amount
// ISK amount = value × 1
// e.g. ¥1,000 → amount: 1000