$

Colombian Peso

fiat
ISO Code: COPNumeric: 170Decimals: 2Region: Americas
🇨🇴

Formatting Examples

Valueen-US
1COP 1.00
9.99COP 9.99
100COP 100.00
1234.56COP 1,234.56
1000000COP 1,000,000.00

Intl.NumberFormat

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

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

// Stripe / payment API amount
// COP amount = value × 100
// e.g. $10.00 → amount: 1000

Countries Using COP