Iranian Rial

fiat
ISO Code: IRRNumeric: 364Decimals: 2Region: Asia
🇮🇷

Formatting Examples

Valueen-US
1IRR 1
9.99IRR 10
100IRR 100
1234.56IRR 1,235
1000000IRR 1,000,000

Intl.NumberFormat

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

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

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

Countries Using IRR