π²π²
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.