kn

HRKCroatian Kuna (replaced by EUR in 2023)

fiathistorical
ISO Code: HRKNumeric: 191ISO minor unit: 2Region: Europe

Developer Note

Croatia adopted EUR on 1 January 2023 at the official conversion rate of 7.53450 kuna per euro.

Verified 2026-07-19. Primary source

How to implement HRK safely

Kuna uses ISO 4217 alpha code HRK and numeric code 191.

HRK is historical and was superseded by EUR. Do not offer it for new transactions; retain it only for dated records, migrations, and archival display. HRK has ISO minor unit 2, so one major unit divides into 100 minor units. Configure Intl.NumberFormat with currency: "HRK"; do not hardcode the symbol or assume every currency uses two decimals.

kn is the reference symbol in this dataset. Store HRK alongside the amount so exports, payments, and accounting data remain unambiguous. Format for display only after choosing the user's locale, because symbol placement and separators belong to the locale rather than the currency record.

HRK is a supranational or special-purpose unit and has no single country assignment in this directory. The record was checked against the SIX ISO 4217 source on 2026-07-19; recheck status-sensitive records when the Maintenance Agency publishes a new list.

  • Status: historical
  • Numeric code: 191
  • ISO minor unit: 2
  • Verified: 2026-07-19

Reviewed 19 July 2026. Sources: SIX ISO 4217 historical list · Currency status source

Formatting Examples

Valueen-US
1HRK 1.00
9.99HRK 9.99
100HRK 100.00
1234.56HRK 1,234.56
1000000HRK 1,000,000.00

Intl.NumberFormat

JavaScript
// Basic HRK formatting
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'HRK',
}).format(1234.56);
// → "HRK 1,234.56"

// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'HRK',
  minimumFractionDigits: 2,
  maximumFractionDigits: 2,
}).format(99);
// Example display precision: 2 decimal places
// ISO 4217 minor unit: 2

// Integer minor-unit storage
// HRK amount = value × 100