πŸ‡²πŸ‡²

Myanmar

CLDR Locale:
ISO: MM / MMRRegion: AsiaDigits: burmese

Try It β€” Live Preview

Number
၁,၂၃၄,၅၆၇.αˆα‰
Currency (MMK)
၁,၂၃၄,α…α†αˆΒ K
Percentage
၁,၂၃၄,α…α†αˆ%
Compact
၁.α‚Β α€žα€”α€Ία€Έ

Format Rules

Decimal Separator
.period
Thousands Separator
,comma
Grouping Pattern
3
Negative Format
-၁,၂၃၄,၅၆၇.αˆα‰
Currency Symbol
K (MMK)
Currency Position
Before number β†’ K1,234,567.89
Percent Position
After number β†’ ၁၃%
Zero
၀.၀၀
Compact
၁.α‚Β α€žα€”α€Ία€Έ

Code Examples

// Basic number
new Intl.NumberFormat('my-MM').format(1234567.89)
// β†’ "1,234,567.89"

// Currency
new Intl.NumberFormat('my-MM', {
  style: 'currency',
  currency: 'MMK'
}).format(1234567.89)
// β†’ "K1,234,567.89"

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

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

Negative Number Formats

Standard-၁,၂၃၄,၅၆၇.αˆα‰
new Intl.NumberFormat('my-MM').format(-1234567.89)
Accounting style-K ၁,၂၃၄,α…α†αˆ
new Intl.NumberFormat('my-MM', { style: 'currency', currency: 'MMK', currencySign: 'accounting' }).format(-1234567.89)

Edge Cases & Notes

Myanmar (Burmese) digits (α€αα‚αƒα„α…α†α‡αˆα‰) used in native locale.