Search code examples
javascriptconcurrencynumber-formatting

Complete list of all different Intl.NumberFormats


I'm looking for a complete list of all the different Intl.NumberFormats.

The Intl.NumberFormat page shows 3 different formats.

ja-JP -> "¥123,457"
de-DE -> 123.456,79 €
en-IN -> 1,23,000

Is this all? Or is there more?


Solution

  • All different formats available worldwide.

    $c = '{
    "en_EN": "$100,000.00",
    "de_DE": "100.000,00 $",
    "af_AF": "$ 100,000.00",
    "am_AM": "US$100,000.00",
    "ar_AR": "١٠٠٬٠٠٠٫٠٠ US$",
    "bn_BN": "১,০০,০০০.০০US$",
    "bg_BG": "100000,00 щ.д.",
    "ca_CA": "100.000,00 USD",
    "cs_CS": "100 000,00 US$",
    "nl_NL": "US$ 100.000,00",
    "et_ET": "100 000,00 $",
    "fr_FR": "100 000,00 $US",
    "he_HE": "‏100,000.00 $",
    "hi_HI": "$1,00,000.00",
    "it_IT": "100.000,00 US$",
    "nb_NB": "USD 100 000,00",
    "ms_MS": "USD100,000.00",
    "id_ID": "US$100.000,00",
    "pl_PL": "100 000,00 USD"}';