ZK

Zambian Kwacha

fiat
ISO Code: ZMWNumeric: 967Decimals: 2Region: Africa
🇿🇲

Formatting Examples

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

Intl.NumberFormat

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

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

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