Rs.

Nepalese Rupee

fiat
ISO Code: NPRNumeric: 524Decimals: 2Region: Asia
🇳🇵

Formatting Examples

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

Intl.NumberFormat

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

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

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