South Korean Won

fiat
ISO Code: KRWNumeric: 410Decimals: 0Region: Asia
🇰🇷

Developer Note

No minor unit.

Formatting Examples

Valueen-US
1₩1
9.99₩10
100₩100
1234.56₩1,235
1000000₩1,000,000

Intl.NumberFormat

JavaScript
// Basic KRW formatting
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'KRW',
}).format(1234.00);
// → "₩1,234"

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

// Stripe / payment API amount
// KRW amount = value × 1
// e.g. ¥1,000 → amount: 1000

Countries Using KRW