د.ك

Kuwaiti Dinar

fiat
ISO Code: KWDNumeric: 414Decimals: 3Region: Asia
🇰🇼

Developer Note

3 decimal places (fils). One of the highest-valued currencies.

Formatting Examples

Valueen-US
1KWD 1.000
9.99KWD 9.990
100KWD 100.000
1234.56KWD 1,234.560
1000000KWD 1,000,000.000

Intl.NumberFormat

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

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

// Stripe / payment API amount
// KWD amount = value × 1000
// e.g. 1.000 KWD → amount: 1000