$

Chilean Peso

fiat
ISO Code: CLPNumeric: 152Decimals: 0Region: Americas
🇨🇱

Developer Note

No minor unit.

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using CLP