This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2020.
The numberingSystem accessor property of Intl.Locale instances returns the numeral system for this locale.
A numeral system is a system for expressing numbers. For a list of supported numbering system types, see Intl.supportedValuesOf().
The numberingSystem property's value is set at construction time, either through the nu key of the locale identifier or through the numberingSystem option of the Intl.Locale() constructor. The latter takes priority if they are both present; and if neither is present, the property has value undefined.
The set accessor of numberingSystem is undefined. You cannot change this property directly.
Like other locale subtags, the numbering system type can be added to the Intl.Locale object via the locale string, or a configuration object argument to the constructor.
In the Unicode locale string spec, numberingSystem is an "extension subtag". These subtags add additional data about the locale, and are added to locale identifiers using the -u extension key. To add the numbering system type to the initial locale identifier string passed into the Intl.Locale() constructor, first add the -u extension key if it doesn't exist. Next, add the -nu extension to indicate that you are adding a numbering system. Finally, add the numbering system type.
const locale = new Intl.Locale("fr-Latn-FR-u-nu-mong");
console.log(locale.numberingSystem); // "mong"
The Intl.Locale() constructor has an optional configuration object argument, which can contain any of several extension types, including numbering system types. Set the numberingSystem property of the configuration object to your desired numbering system type, and then pass it into the constructor.
const locale = new Intl.Locale("en-Latn-US", { numberingSystem: "latn" });
console.log(locale.numberingSystem); // "latn"
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
numberingSystem |
74 | 79 | 75 | 62 | 14 | 74 | 79 | 53 | 14 | 11.0 | 74 | 14 | 1.0.0 | 1.8 | 12.0.0 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/numberingSystem