🇮🇷

Iran

CLDR Locale:
ISO: IR / IRNRegion: AsiaDigits: eastern arabic

Try It — Live Preview

Number
۱٬۲۳۴٬۵۶۷٫۸۹
Currency (IRR)
‎ریال ۱٬۲۳۴٬۵۶۸
Percentage
۱٬۲۳۴٬۵۶۸٪
Compact
۱٫۲ میلیون

Format Rules

Decimal Separator
٫٫
Thousands Separator
٬Arabic thousands separator
Grouping Pattern
3
Negative Format
‎−۱٬۲۳۴٬۵۶۷٫۸۹
Currency Symbol
(IRR)
Currency Position
After number with space ۱٬۲۳۴٬۵۶۷٫۸۹ ﷼
Percent Position
Before number ۱۳٪
Zero
۰٫۰۰
Compact
۱٫۲ میلیون

Code Examples

// Basic number
new Intl.NumberFormat('fa-IR').format(1234567.89)
// → "۱٬۲۳۴٬۵۶۷٫۸۹"

// Currency
new Intl.NumberFormat('fa-IR', {
  style: 'currency',
  currency: 'IRR'
}).format(1234567.89)
// → "۱٬۲۳۴٬۵۶۷٫۸۹ ﷼"

// Percentage
new Intl.NumberFormat('fa-IR', {
  style: 'percent',
  minimumFractionDigits: 1
}).format(0.125)

// Compact notation
new Intl.NumberFormat('fa-IR', {
  notation: 'compact'
}).format(1234567)

Negative Number Formats

Standard‎−۱٬۲۳۴٬۵۶۷٫۸۹
new Intl.NumberFormat('fa-IR').format(-1234567.89)
Accounting style‎(ریال ۱٬۲۳۴٬۵۶۸)
new Intl.NumberFormat('fa-IR', { style: 'currency', currency: 'IRR', currencySign: 'accounting' }).format(-1234567.89)

Edge Cases & Notes

Uses Persian Extended Arabic-Indic digits (۰–۹).