$
Chilean Peso
fiatISO Code: CLPNumeric: 152Decimals: 0Region: Americas
🇨🇱
Developer Note
No minor unit.
Formatting Examples
| Value | en-US |
|---|---|
| 1 | CLP 1 |
| 9.99 | CLP 10 |
| 100 | CLP 100 |
| 1234.56 | CLP 1,235 |
| 1000000 | CLP 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