kn

Croatian Kuna (replaced by EUR 2023)

fiat
ISO Code: HRKNumeric: 191Decimals: 2Region: Europe

Developer Note

Replaced by EUR on 1 January 2023.

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);
// ISO 4217 minor unit: 2 decimal places

// Stripe / payment API amount
// HRK amount = value × 100
// e.g. $10.00 → amount: 1000