kr

Icelandic Króna

ISK

Primary country: Iceland

Symbol

kr

Decimal Places

0

ISO Numeric

352

Formatting Example

kr 123.456

Usage in Code

// JavaScript Intl.NumberFormat
new Intl.NumberFormat('en', {
  style: 'currency',
  currency: 'ISK'
}).format(1234.56)
// → "kr 123.456"

// ISO 4217 code: ISK
// Numeric code: 352
// Minor unit: 0 decimal places

About Icelandic Króna

The Icelandic Króna (ISK) is the official currency of Iceland, identified by the ISO 4217 code "ISK" and numeric code 352. Its symbol is kr, and amounts are typically formatted with 0 decimal places (e.g., kr 123.456).

In software development, currency codes are essential for e-commerce, financial applications, and internationalization. The JavaScript Intl.NumberFormat API supports formatting amounts in ISK with locale-aware separators and symbols. Payment processors like Stripe and PayPal require ISO 4217 currency codes when processing transactions.

When building multi-currency applications, store amounts in the smallest unit (e.g., cents for USD) to avoid floating-point precision errors. Use the decimal places value (0) to correctly convert between major and minor units. APIs like exchangeratesapi.io and Open Exchange Rates provide real-time conversion rates for ISK.

Related Currencies