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