πŸ‡°πŸ‡­

Cambodia

CLDR Locale:
ISO: KH / KHMRegion: AsiaDigits: khmer

Try It β€” Live Preview

Number
1,234,567.89
Currency (KHR)
1,234,567.89αŸ›
Percentage
1,234,568%
Compact
1.2Β αž›αžΆαž“

Format Rules

Decimal Separator
,comma
Thousands Separator
.period
Grouping Pattern
3
Negative Format
-1,234,567.89
Currency Symbol
αŸ› (KHR)
Currency Position
After number with space β†’ 1.234.567,89Β αŸ›
Percent Position
After number β†’ 13%
Zero
0.00
Compact
1.2Β αž›αžΆαž“

Code Examples

// Basic number
new Intl.NumberFormat('km-KH').format(1234567.89)
// β†’ "1.234.567,89"

// Currency
new Intl.NumberFormat('km-KH', {
  style: 'currency',
  currency: 'KHR'
}).format(1234567.89)
// β†’ "1.234.567,89Β αŸ›"

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

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

Negative Number Formats

Standard-1,234,567.89
new Intl.NumberFormat('km-KH').format(-1234567.89)
Accounting style(1,234,567.89αŸ›)
new Intl.NumberFormat('km-KH', { style: 'currency', currency: 'KHR', currencySign: 'accounting' }).format(-1234567.89)

Edge Cases & Notes

Khmer digits (០៑្៣ៀαŸ₯៦៧៨៩) used in native locale.