CLP — Chilean Peso
fiatHow to implement CLP safely
Chilean Peso uses ISO 4217 alpha code CLP and numeric code 152.
CLP appears in the current ISO 4217 list published 2026-01-01. CLP has ISO minor unit 0, so the standard currency formatter normally displays no fractional digits. Configure Intl.NumberFormat with currency: "CLP"; do not hardcode the symbol or assume every currency uses two decimals.
$ is the reference symbol in this dataset. Store CLP alongside the amount so exports, payments, and accounting data remain unambiguous. Format for display only after choosing the user's locale, because symbol placement and separators belong to the locale rather than the currency record.
This site's coverage associates CLP with 1 countries or territories (CL). Region and language still need separate locale selection; the currency code alone does not choose punctuation or digit shapes. The record was checked against the SIX ISO 4217 source on 2026-07-19; recheck status-sensitive records when the Maintenance Agency publishes a new list.
- Status: active
- Numeric code: 152
- ISO minor unit: 0
- Verified: 2026-07-19
Reviewed 19 July 2026. Sources: SIX ISO 4217 current list
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
// 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);
// Example display precision: 0 decimal places
// ISO 4217 minor unit: 0
// Integer minor-unit storage
// CLP amount = value × 1Countries Using CLP
Continue your localization implementation
Connect this reference to the format, validation, and testing guidance used elsewhere on the site.
Formatting implementation
Numbers, currencies, dates, time zones, numbering systems, and production tests.
Failure patterns
Hardcoded copy, broken layouts, missing context, bidi, and cultural adaptation.
Standards reference
ISO country, currency, and language codes; BCP 47; E.164; and UPU S42.
Validation coverage
Provider evidence, country test cases, geocoding, deliverability, and phone checks.
Locale-aware numbers
Separators, grouping, currency precision, and Intl.NumberFormat patterns.
Localization testing
Pseudolocalization, test matrices, native review, and regional release gates.
Address and phone standards
UPU S42, E.164, adaptive forms, storage, parsing, and validation.
I18n architecture
Messages, Unicode, RTL, locale services, fallbacks, and delivery workflow.
Address formats
Country templates, field order, and accessible international forms.
Phone formats
E.164 storage, regional display, parsing, and validation.
Compare locales
Inspect the same numeric value across several country formats.
Interactive tools
Try number, address, and phone formatting in your browser.