C$

Nicaraguan Córdoba

fiat
ISO Code: NIONumeric: 558Decimals: 2Region: Americas
🇳🇮

Formatting Examples

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

Intl.NumberFormat

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

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

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

Countries Using NIO