Get Locale objects for all locales available in Java

Overview

--Get java.util.Locale objects for all locales available in Java

Get Japanese / Japanese Locale objects

Source code

import java.util.Locale;

public class Ja_JP {

  public static void main(String[] args) {

    //Japanese / Japanese locale
    System.out.println("new Locale(Locale.JAPANESE.getLanguage(), Locale.JAPAN.getCountry())");
    Locale ja_JP = new Locale(Locale.JAPANESE.getLanguage(), Locale.JAPAN.getCountry());
    System.out.println("Locale: " + ja_JP);
    System.out.println("DisplayName: " + ja_JP.getDisplayName());
    System.out.println();

    //Japanese / Japanese locale
    System.out.println("new Locale(\"ja\", \"JP\")");
    Locale ja_JP_string = new Locale("ja", "JP");
    System.out.println("Locale: " + ja_JP_string);
    System.out.println("DisplayName: " + ja_JP_string.getDisplayName());
    System.out.println();
  }
}

Execution result

new Locale(Locale.JAPANESE.getLanguage(), Locale.JAPAN.getCountry())
Locale: ja_JP
DisplayName:Japanese(Japan)

new Locale("ja", "JP")
Locale: ja_JP
DisplayName:Japanese(Japan)

Get Locale objects for all installed locales

Source code

import java.util.Arrays;
import java.util.Comparator;
import java.util.Locale;

public class LocaleList {

  public static void main(String[] args) {
    Arrays.stream(Locale.getAvailableLocales())
      .sorted(Comparator.comparing(Locale::toString)) //Arrange in alphabetical lexicographic order
      .forEach(locale -> {
          //language,Country,variant,script,Expansion
          // language + "_" + country + "_" + (variant + "_#" | "#") + script + "_" + extension
          System.out.println("Locale: " + locale);
          System.out.println("DisplayName: " + locale.getDisplayName());
          System.out.println("Language: " + locale.getLanguage());
          System.out.println("Country: " + locale.getCountry());
          System.out.println();
        }
      );
  }
}

Execution result

Locale: 
DisplayName: 
Language: 
Country: 

Locale: af
DisplayName:Afrikaans
Language: af
Country: 

Locale: af_NA
DisplayName:Afrikaans(Namibia)
Language: af
Country: NA

Locale: af_ZA
DisplayName:Afrikaans(South Africa)
Language: af
Country: ZA

Locale: agq
DisplayName:Aghem
Language: agq
Country: 

Locale: agq_CM
DisplayName:Aghem(Cameroon)
Language: agq
Country: CM

Locale: ak
DisplayName:Akan
Language: ak
Country: 

Locale: ak_GH
DisplayName:Akan(Ghana)
Language: ak
Country: GH

Locale: am
DisplayName:Amharic
Language: am
Country: 

Locale: am_ET
DisplayName:Amharic(Ethiopia)
Language: am
Country: ET

Locale: ar
DisplayName:Arabic
Language: ar
Country: 

Locale: ar_001
DisplayName:Arabic(world)
Language: ar
Country: 001

Locale: ar_AE
DisplayName:Arabic(United Arab Emirates)
Language: ar
Country: AE

Locale: ar_BH
DisplayName:Arabic(Bahrain)
Language: ar
Country: BH

Locale: ar_DJ
DisplayName:Arabic(Djibouti)
Language: ar
Country: DJ

Locale: ar_DZ
DisplayName:Arabic(Algeria)
Language: ar
Country: DZ

Locale: ar_EG
DisplayName:Arabic(Egypt)
Language: ar
Country: EG

Locale: ar_EH
DisplayName:Arabic(Western Sahara)
Language: ar
Country: EH

Locale: ar_ER
DisplayName:Arabic(Eritrea)
Language: ar
Country: ER

Locale: ar_IL
DisplayName:Arabic(Israel)
Language: ar
Country: IL

Locale: ar_IQ
DisplayName:Arabic(Iraq)
Language: ar
Country: IQ

Locale: ar_JO
DisplayName:Arabic(Jordan)
Language: ar
Country: JO

Locale: ar_KM
DisplayName:Arabic(Comoros)
Language: ar
Country: KM

Locale: ar_KW
DisplayName:Arabic(Kuwait)
Language: ar
Country: KW

Locale: ar_LB
DisplayName:Arabic(Lebanon)
Language: ar
Country: LB

Locale: ar_LY
DisplayName:Arabic(Libya)
Language: ar
Country: LY

Locale: ar_MA
DisplayName:Arabic(Morocco)
Language: ar
Country: MA

Locale: ar_MR
DisplayName:Arabic(Mauritania)
Language: ar
Country: MR

Locale: ar_OM
DisplayName:Arabic(Oman)
Language: ar
Country: OM

Locale: ar_PS
DisplayName:Arabic(Palestinian territory)
Language: ar
Country: PS

Locale: ar_QA
DisplayName:Arabic(Qatar)
Language: ar
Country: QA

Locale: ar_SA
DisplayName:Arabic(Saudi Arabia)
Language: ar
Country: SA

Locale: ar_SD
DisplayName:Arabic(Sudan)
Language: ar
Country: SD

Locale: ar_SO
DisplayName:Arabic(Somalia)
Language: ar
Country: SO

Locale: ar_SS
DisplayName:Arabic(South Sudan)
Language: ar
Country: SS

Locale: ar_SY
DisplayName:Arabic(Syria)
Language: ar
Country: SY

Locale: ar_TD
DisplayName:Arabic(Chad)
Language: ar
Country: TD

Locale: ar_TN
DisplayName:Arabic(Tunisia)
Language: ar
Country: TN

Locale: ar_YE
DisplayName:Arabic(Yemen)
Language: ar
Country: YE

Locale: as
DisplayName:Assamese
Language: as
Country: 

Locale: as_IN
DisplayName:Assamese(India)
Language: as
Country: IN

Locale: asa
DisplayName:Asu
Language: asa
Country: 

Locale: asa_TZ
DisplayName:Asu(Tanzania)
Language: asa
Country: TZ

Locale: ast
DisplayName:Asturian
Language: ast
Country: 

Locale: ast_ES
DisplayName:Asturian(Spain)
Language: ast
Country: ES

Locale: az
DisplayName:Azerbaijani
Language: az
Country: 

Locale: az_AZ_#Cyrl
DisplayName:Azerbaijani(Cyrillic, Azerbaijan)
Language: az
Country: AZ

Locale: az_AZ_#Latn
DisplayName:Azerbaijani(Latin letters, Azerbaijan)
Language: az
Country: AZ

Locale: az__#Cyrl
DisplayName:Azerbaijani(Cyrillic)
Language: az
Country: 

Locale: az__#Latn
DisplayName:Azerbaijani(Latin letters)
Language: az
Country: 

Locale: bas
DisplayName:Basaa
Language: bas
Country: 

Locale: bas_CM
DisplayName:Basaa(Cameroon)
Language: bas
Country: CM

Locale: be
DisplayName:Belarusian
Language: be
Country: 

Locale: be_BY
DisplayName:Belarusian(Belarus)
Language: be
Country: BY

Locale: bem
DisplayName:Bemba
Language: bem
Country: 

Locale: bem_ZM
DisplayName:Bemba(Zambia)
Language: bem
Country: ZM

Locale: bez
DisplayName:Bena
Language: bez
Country: 

Locale: bez_TZ
DisplayName:Bena(Tanzania)
Language: bez
Country: TZ

Locale: bg
DisplayName:Bulgarian
Language: bg
Country: 

Locale: bg_BG
DisplayName:Bulgarian(Bulgaria)
Language: bg
Country: BG

Locale: bm
DisplayName:Bambara
Language: bm
Country: 

Locale: bm_ML
DisplayName:Bambara(Mali)
Language: bm
Country: ML

Locale: bn
DisplayName:Bengali
Language: bn
Country: 

Locale: bn_BD
DisplayName:Bengali(Bangladesh)
Language: bn
Country: BD

Locale: bn_IN
DisplayName:Bengali(India)
Language: bn
Country: IN

Locale: bo
DisplayName:Tibetan
Language: bo
Country: 

Locale: bo_CN
DisplayName:Tibetan(China)
Language: bo
Country: CN

Locale: bo_IN
DisplayName:Tibetan(India)
Language: bo
Country: IN

Locale: br
DisplayName:Breton
Language: br
Country: 

Locale: br_FR
DisplayName:Breton(France)
Language: br
Country: FR

Locale: brx
DisplayName:Boro
Language: brx
Country: 

Locale: brx_IN
DisplayName:Boro(India)
Language: brx
Country: IN

Locale: bs
DisplayName:Bosnian
Language: bs
Country: 

Locale: bs_BA_#Cyrl
DisplayName:Bosnian(Cyrillic, Bosnia and Herzegovina)
Language: bs
Country: BA

Locale: bs_BA_#Latn
DisplayName:Bosnian(Latin letters, Bosnia and Herzegovina)
Language: bs
Country: BA

Locale: bs__#Cyrl
DisplayName:Bosnian(Cyrillic)
Language: bs
Country: 

Locale: bs__#Latn
DisplayName:Bosnian(Latin letters)
Language: bs
Country: 

Locale: ca
DisplayName:Catalan
Language: ca
Country: 

Locale: ca_AD
DisplayName:Catalan(Andorra)
Language: ca
Country: AD

Locale: ca_ES
DisplayName:Catalan(Spain)
Language: ca
Country: ES

Locale: ca_ES_VALENCIA
DisplayName:Catalan(Valencian dialect, Spain)
Language: ca
Country: ES

Locale: ca_FR
DisplayName:Catalan(France)
Language: ca
Country: FR

Locale: ca_IT
DisplayName:Catalan(Italy)
Language: ca
Country: IT

Locale: ccp
DisplayName: ccp
Language: ccp
Country: 

Locale: ccp_BD
DisplayName: ccp (Bangladesh)
Language: ccp
Country: BD

Locale: ccp_IN
DisplayName: ccp (India)
Language: ccp
Country: IN

Locale: ce
DisplayName:Chechen
Language: ce
Country: 

Locale: ce_RU
DisplayName:Chechen(Russia)
Language: ce
Country: RU

Locale: cgg
DisplayName:Chiga
Language: cgg
Country: 

Locale: cgg_UG
DisplayName:Chiga(Uganda)
Language: cgg
Country: UG

Locale: chr
DisplayName:Cherokee
Language: chr
Country: 

Locale: chr_US
DisplayName:Cherokee(United States of America)
Language: chr
Country: US

Locale: ckb
DisplayName:Central Kurdish
Language: ckb
Country: 

Locale: ckb_IQ
DisplayName:Central Kurdish(Iraq)
Language: ckb
Country: IQ

Locale: ckb_IR
DisplayName:Central Kurdish(Iran)
Language: ckb
Country: IR

Locale: cs
DisplayName:Czech language
Language: cs
Country: 

Locale: cs_CZ
DisplayName:Czech language(Czech)
Language: cs
Country: CZ

Locale: cu
DisplayName:Church slavonic
Language: cu
Country: 

Locale: cu_RU
DisplayName:Church slavonic(Russia)
Language: cu
Country: RU

Locale: cy
DisplayName:Welsh
Language: cy
Country: 

Locale: cy_GB
DisplayName:Welsh(England)
Language: cy
Country: GB

Locale: da
DisplayName:Danish
Language: da
Country: 

Locale: da_DK
DisplayName:Danish(Denmark)
Language: da
Country: DK

Locale: da_GL
DisplayName:Danish(Greenland)
Language: da
Country: GL

Locale: dav
DisplayName:Taita
Language: dav
Country: 

Locale: dav_KE
DisplayName:Taita(Kenya)
Language: dav
Country: KE

Locale: de
DisplayName:German
Language: de
Country: 

Locale: de_AT
DisplayName:German(Austria)
Language: de
Country: AT

Locale: de_BE
DisplayName:German(Belgium)
Language: de
Country: BE

Locale: de_CH
DisplayName:German(Switzerland)
Language: de
Country: CH

Locale: de_DE
DisplayName:German(Germany)
Language: de
Country: DE

Locale: de_IT
DisplayName:German(Italy)
Language: de
Country: IT

Locale: de_LI
DisplayName:German(Liechtenstein)
Language: de
Country: LI

Locale: de_LU
DisplayName:German(Luxembourg)
Language: de
Country: LU

Locale: dje
DisplayName:Zarma
Language: dje
Country: 

Locale: dje_NE
DisplayName:Zarma(Niger)
Language: dje
Country: NE

Locale: dsb
DisplayName:Lower Sorbian
Language: dsb
Country: 

Locale: dsb_DE
DisplayName:Lower Sorbian(Germany)
Language: dsb
Country: DE

Locale: dua
DisplayName:Duala
Language: dua
Country: 

Locale: dua_CM
DisplayName:Duala(Cameroon)
Language: dua
Country: CM

Locale: dyo
DisplayName:Jola-Fonyi
Language: dyo
Country: 

Locale: dyo_SN
DisplayName:Jola-Fonyi(Senegal)
Language: dyo
Country: SN

Locale: dz
DisplayName:Dzongkha
Language: dz
Country: 

Locale: dz_BT
DisplayName:Dzongkha(Bhutan)
Language: dz
Country: BT

Locale: ebu
DisplayName:Embu
Language: ebu
Country: 

Locale: ebu_KE
DisplayName:Embu(Kenya)
Language: ebu
Country: KE

Locale: ee
DisplayName:Ewe
Language: ee
Country: 

Locale: ee_GH
DisplayName:Ewe(Ghana)
Language: ee
Country: GH

Locale: ee_TG
DisplayName:Ewe(Togo)
Language: ee
Country: TG

Locale: el
DisplayName:Greek language
Language: el
Country: 

Locale: el_CY
DisplayName:Greek language(Cyprus)
Language: el
Country: CY

Locale: el_GR
DisplayName:Greek language(Greece)
Language: el
Country: GR

Locale: en
DisplayName:English
Language: en
Country: 

Locale: en_001
DisplayName:English(world)
Language: en
Country: 001

Locale: en_150
DisplayName:English(Europe)
Language: en
Country: 150

Locale: en_AG
DisplayName:English(Antigua and Barbuda)
Language: en
Country: AG

Locale: en_AI
DisplayName:English(Anguilla)
Language: en
Country: AI

Locale: en_AS
DisplayName:English(American Samoa)
Language: en
Country: AS

Locale: en_AT
DisplayName:English(Austria)
Language: en
Country: AT

Locale: en_AU
DisplayName:English(Australia)
Language: en
Country: AU

Locale: en_BB
DisplayName:English(Barbados)
Language: en
Country: BB

Locale: en_BE
DisplayName:English(Belgium)
Language: en
Country: BE

Locale: en_BI
DisplayName:English(Burundi)
Language: en
Country: BI

Locale: en_BM
DisplayName:English(Bermuda)
Language: en
Country: BM

Locale: en_BS
DisplayName:English(Bahamas)
Language: en
Country: BS

Locale: en_BW
DisplayName:English(Botswana)
Language: en
Country: BW

Locale: en_BZ
DisplayName:English(Belize)
Language: en
Country: BZ

Locale: en_CA
DisplayName:English(Canada)
Language: en
Country: CA

Locale: en_CC
DisplayName:English(Cocos(Key ring)Islands)
Language: en
Country: CC

Locale: en_CH
DisplayName:English(Switzerland)
Language: en
Country: CH

Locale: en_CK
DisplayName:English(Cook Islands)
Language: en
Country: CK

Locale: en_CM
DisplayName:English(Cameroon)
Language: en
Country: CM

Locale: en_CX
DisplayName:English(Christmas island)
Language: en
Country: CX

Locale: en_CY
DisplayName:English(Cyprus)
Language: en
Country: CY

Locale: en_DE
DisplayName:English(Germany)
Language: en
Country: DE

Locale: en_DG
DisplayName:English(Diego Garcia)
Language: en
Country: DG

Locale: en_DK
DisplayName:English(Denmark)
Language: en
Country: DK

Locale: en_DM
DisplayName:English(Dominica)
Language: en
Country: DM

Locale: en_ER
DisplayName:English(Eritrea)
Language: en
Country: ER

Locale: en_FI
DisplayName:English(Finland)
Language: en
Country: FI

Locale: en_FJ
DisplayName:English(Fiji)
Language: en
Country: FJ

Locale: en_FK
DisplayName:English(Falkland Islands)
Language: en
Country: FK

Locale: en_FM
DisplayName:English(Federated States of Micronesia)
Language: en
Country: FM

Locale: en_GB
DisplayName:English(England)
Language: en
Country: GB

Locale: en_GD
DisplayName:English(Grenada)
Language: en
Country: GD

Locale: en_GG
DisplayName:English(Guernsey)
Language: en
Country: GG

Locale: en_GH
DisplayName:English(Ghana)
Language: en
Country: GH

Locale: en_GI
DisplayName:English(Gibraltar)
Language: en
Country: GI

Locale: en_GM
DisplayName:English(Gambia)
Language: en
Country: GM

Locale: en_GU
DisplayName:English(Guam)
Language: en
Country: GU

Locale: en_GY
DisplayName:English(Guyana)
Language: en
Country: GY

Locale: en_HK
DisplayName:English(People's Republic of China Hong Kong Special Administrative Region)
Language: en
Country: HK

Locale: en_IE
DisplayName:English(Ireland)
Language: en
Country: IE

Locale: en_IL
DisplayName:English(Israel)
Language: en
Country: IL

Locale: en_IM
DisplayName:English(Isle of Man)
Language: en
Country: IM

Locale: en_IN
DisplayName:English(India)
Language: en
Country: IN

Locale: en_IO
DisplayName:English(British Indian Ocean Territory)
Language: en
Country: IO

Locale: en_JE
DisplayName:English(Jersey)
Language: en
Country: JE

Locale: en_JM
DisplayName:English(Jamaica)
Language: en
Country: JM

Locale: en_KE
DisplayName:English(Kenya)
Language: en
Country: KE

Locale: en_KI
DisplayName:English(Kiribati)
Language: en
Country: KI

Locale: en_KN
DisplayName:English(Saint Kitts and Nevis)
Language: en
Country: KN

Locale: en_KY
DisplayName:English(Cayman Islands)
Language: en
Country: KY

Locale: en_LC
DisplayName:English(Saint Lucia)
Language: en
Country: LC

Locale: en_LR
DisplayName:English(Liberia)
Language: en
Country: LR

Locale: en_LS
DisplayName:English(Lesotho)
Language: en
Country: LS

Locale: en_MG
DisplayName:English(Madagascar)
Language: en
Country: MG

Locale: en_MH
DisplayName:English(Marshall Islands)
Language: en
Country: MH

Locale: en_MO
DisplayName:English(Macau SAR, People's Republic of China)
Language: en
Country: MO

Locale: en_MP
DisplayName:English(Northern Mariana Islands)
Language: en
Country: MP

Locale: en_MS
DisplayName:English(Montserrat)
Language: en
Country: MS

Locale: en_MT
DisplayName:English(Malta)
Language: en
Country: MT

Locale: en_MU
DisplayName:English(Mauritius)
Language: en
Country: MU

Locale: en_MW
DisplayName:English(Malawi)
Language: en
Country: MW

Locale: en_MY
DisplayName:English(Malaysia)
Language: en
Country: MY

Locale: en_NA
DisplayName:English(Namibia)
Language: en
Country: NA

Locale: en_NF
DisplayName:English(Norfolk Island)
Language: en
Country: NF

Locale: en_NG
DisplayName:English(Nigeria)
Language: en
Country: NG

Locale: en_NL
DisplayName:English(Netherlands)
Language: en
Country: NL

Locale: en_NR
DisplayName:English(Nauru)
Language: en
Country: NR

Locale: en_NU
DisplayName:English(Niue)
Language: en
Country: NU

Locale: en_NZ
DisplayName:English(new Zealand)
Language: en
Country: NZ

Locale: en_PG
DisplayName:English(Papua New Guinea)
Language: en
Country: PG

Locale: en_PH
DisplayName:English(Philippines)
Language: en
Country: PH

Locale: en_PK
DisplayName:English(Pakistan)
Language: en
Country: PK

Locale: en_PN
DisplayName:English(Pitcairn Islands)
Language: en
Country: PN

Locale: en_PR
DisplayName:English(Puerto Rico)
Language: en
Country: PR

Locale: en_PW
DisplayName:English(Palau)
Language: en
Country: PW

Locale: en_RW
DisplayName:English(Rwanda)
Language: en
Country: RW

Locale: en_SB
DisplayName:English(Solomon Islands)
Language: en
Country: SB

Locale: en_SC
DisplayName:English(Seychelles)
Language: en
Country: SC

Locale: en_SD
DisplayName:English(Sudan)
Language: en
Country: SD

Locale: en_SE
DisplayName:English(Sweden)
Language: en
Country: SE

Locale: en_SG
DisplayName:English(Singapore)
Language: en
Country: SG

Locale: en_SH
DisplayName:English(St. Helena)
Language: en
Country: SH

Locale: en_SI
DisplayName:English(Slovenia)
Language: en
Country: SI

Locale: en_SL
DisplayName:English(Sierra Leone)
Language: en
Country: SL

Locale: en_SS
DisplayName:English(South Sudan)
Language: en
Country: SS

Locale: en_SX
DisplayName:English(Sint Maarten)
Language: en
Country: SX

Locale: en_SZ
DisplayName:English(Swaziland)
Language: en
Country: SZ

Locale: en_TC
DisplayName:English(Turks and Caicos Islands)
Language: en
Country: TC

Locale: en_TK
DisplayName:English(Tokelau)
Language: en
Country: TK

Locale: en_TO
DisplayName:English(Tonga)
Language: en
Country: TO

Locale: en_TT
DisplayName:English(Republic of Trinidad and Tobago)
Language: en
Country: TT

Locale: en_TV
DisplayName:English(Tuvalu)
Language: en
Country: TV

Locale: en_TZ
DisplayName:English(Tanzania)
Language: en
Country: TZ

Locale: en_UG
DisplayName:English(Uganda)
Language: en
Country: UG

Locale: en_UM
DisplayName:English(United States Minor Outly Island)
Language: en
Country: UM

Locale: en_US
DisplayName:English(United States of America)
Language: en
Country: US

Locale: en_US_POSIX
DisplayName:English(United States, computer)
Language: en
Country: US

Locale: en_VC
DisplayName:English(Saint Vincent and the Grenadines)
Language: en
Country: VC

Locale: en_VG
DisplayName:English(British Virgin Islands)
Language: en
Country: VG

Locale: en_VI
DisplayName:English(US Virgin Islands)
Language: en
Country: VI

Locale: en_VU
DisplayName:English(Vanuatu)
Language: en
Country: VU

Locale: en_WS
DisplayName:English(Samoa)
Language: en
Country: WS

Locale: en_ZA
DisplayName:English(South Africa)
Language: en
Country: ZA

Locale: en_ZM
DisplayName:English(Zambia)
Language: en
Country: ZM

Locale: en_ZW
DisplayName:English(Zimbabwe)
Language: en
Country: ZW

Locale: eo
DisplayName:Esperanto
Language: eo
Country: 

Locale: eo_001
DisplayName:Esperanto(world)
Language: eo
Country: 001

Locale: es
DisplayName:Spanish
Language: es
Country: 

Locale: es_419
DisplayName:Spanish(Latin America)
Language: es
Country: 419

Locale: es_AR
DisplayName:Spanish(Argentina)
Language: es
Country: AR

Locale: es_BO
DisplayName:Spanish(Bolivia)
Language: es
Country: BO

Locale: es_BR
DisplayName:Spanish(Brazil)
Language: es
Country: BR

Locale: es_BZ
DisplayName:Spanish(Belize)
Language: es
Country: BZ

Locale: es_CL
DisplayName:Spanish(Chile)
Language: es
Country: CL

Locale: es_CO
DisplayName:Spanish(Columbia)
Language: es
Country: CO

Locale: es_CR
DisplayName:Spanish(Costa Rica)
Language: es
Country: CR

Locale: es_CU
DisplayName:Spanish(Cuba)
Language: es
Country: CU

Locale: es_DO
DisplayName:Spanish(Dominican Republic)
Language: es
Country: DO

Locale: es_EA
DisplayName:Spanish(Ceuta Melilla)
Language: es
Country: EA

Locale: es_EC
DisplayName:Spanish(Ecuador)
Language: es
Country: EC

Locale: es_ES
DisplayName:Spanish(Spain)
Language: es
Country: ES

Locale: es_GQ
DisplayName:Spanish(Equatorial Guinea)
Language: es
Country: GQ

Locale: es_GT
DisplayName:Spanish(Guatemala)
Language: es
Country: GT

Locale: es_HN
DisplayName:Spanish(Honduras)
Language: es
Country: HN

Locale: es_IC
DisplayName:Spanish(Canary Islands)
Language: es
Country: IC

Locale: es_MX
DisplayName:Spanish(Mexico)
Language: es
Country: MX

Locale: es_NI
DisplayName:Spanish(Nicaragua)
Language: es
Country: NI

Locale: es_PA
DisplayName:Spanish(Panama)
Language: es
Country: PA

Locale: es_PE
DisplayName:Spanish(Peru)
Language: es
Country: PE

Locale: es_PH
DisplayName:Spanish(Philippines)
Language: es
Country: PH

Locale: es_PR
DisplayName:Spanish(Puerto Rico)
Language: es
Country: PR

Locale: es_PY
DisplayName:Spanish(Paraguay)
Language: es
Country: PY

Locale: es_SV
DisplayName:Spanish(El salvador)
Language: es
Country: SV

Locale: es_US
DisplayName:Spanish(United States of America)
Language: es
Country: US

Locale: es_UY
DisplayName:Spanish(Uruguay)
Language: es
Country: UY

Locale: es_VE
DisplayName:Spanish(Venezuela)
Language: es
Country: VE

Locale: et
DisplayName:Estonian
Language: et
Country: 

Locale: et_EE
DisplayName:Estonian(Estonia)
Language: et
Country: EE

Locale: eu
DisplayName:Basque
Language: eu
Country: 

Locale: eu_ES
DisplayName:Basque(Spain)
Language: eu
Country: ES

Locale: ewo
DisplayName:Ewondo
Language: ewo
Country: 

Locale: ewo_CM
DisplayName:Ewondo(Cameroon)
Language: ewo
Country: CM

Locale: fa
DisplayName:Persian
Language: fa
Country: 

Locale: fa_AF
DisplayName:Persian(Afghanistan)
Language: fa
Country: AF

Locale: fa_IR
DisplayName:Persian(Iran)
Language: fa
Country: IR

Locale: ff
DisplayName:Fula
Language: ff
Country: 

Locale: ff_CM
DisplayName:Fula(Cameroon)
Language: ff
Country: CM

Locale: ff_GN
DisplayName:Fula(Guinea)
Language: ff
Country: GN

Locale: ff_MR
DisplayName:Fula(Mauritania)
Language: ff
Country: MR

Locale: ff_SN
DisplayName:Fula(Senegal)
Language: ff
Country: SN

Locale: fi
DisplayName:Finnish
Language: fi
Country: 

Locale: fi_FI
DisplayName:Finnish(Finland)
Language: fi
Country: FI

Locale: fil
DisplayName:Filipino
Language: fil
Country: 

Locale: fil_PH
DisplayName:Filipino(Philippines)
Language: fil
Country: PH

Locale: fo
DisplayName:Faroese
Language: fo
Country: 

Locale: fo_DK
DisplayName:Faroese(Denmark)
Language: fo
Country: DK

Locale: fo_FO
DisplayName:Faroese(Faroe Islands)
Language: fo
Country: FO

Locale: fr
DisplayName:French
Language: fr
Country: 

Locale: fr_BE
DisplayName:French(Belgium)
Language: fr
Country: BE

Locale: fr_BF
DisplayName:French(Burkina Faso)
Language: fr
Country: BF

Locale: fr_BI
DisplayName:French(Burundi)
Language: fr
Country: BI

Locale: fr_BJ
DisplayName:French(Benin)
Language: fr
Country: BJ

Locale: fr_BL
DisplayName:French(Saint Barthelemy)
Language: fr
Country: BL

Locale: fr_CA
DisplayName:French(Canada)
Language: fr
Country: CA

Locale: fr_CD
DisplayName:French(Democratic Republic of the Congo(Kinshasa))
Language: fr
Country: CD

Locale: fr_CF
DisplayName:French(Central African Republic)
Language: fr
Country: CF

Locale: fr_CG
DisplayName:French(Republic of the Congo(Brazzaville))
Language: fr
Country: CG

Locale: fr_CH
DisplayName:French(Switzerland)
Language: fr
Country: CH

Locale: fr_CI
DisplayName:French(Cote d'Ivoire)
Language: fr
Country: CI

Locale: fr_CM
DisplayName:French(Cameroon)
Language: fr
Country: CM

Locale: fr_DJ
DisplayName:French(Djibouti)
Language: fr
Country: DJ

Locale: fr_DZ
DisplayName:French(Algeria)
Language: fr
Country: DZ

Locale: fr_FR
DisplayName:French(France)
Language: fr
Country: FR

Locale: fr_GA
DisplayName:French(Gabon)
Language: fr
Country: GA

Locale: fr_GF
DisplayName:French(French Guiana)
Language: fr
Country: GF

Locale: fr_GN
DisplayName:French(Guinea)
Language: fr
Country: GN

Locale: fr_GP
DisplayName:French(Guadeloupe)
Language: fr
Country: GP

Locale: fr_GQ
DisplayName:French(Equatorial Guinea)
Language: fr
Country: GQ

Locale: fr_HT
DisplayName:French(Haiti)
Language: fr
Country: HT

Locale: fr_KM
DisplayName:French(Comoros)
Language: fr
Country: KM

Locale: fr_LU
DisplayName:French(Luxembourg)
Language: fr
Country: LU

Locale: fr_MA
DisplayName:French(Morocco)
Language: fr
Country: MA

Locale: fr_MC
DisplayName:French(Monaco)
Language: fr
Country: MC

Locale: fr_MF
DisplayName:French(Saint Martin)
Language: fr
Country: MF

Locale: fr_MG
DisplayName:French(Madagascar)
Language: fr
Country: MG

Locale: fr_ML
DisplayName:French(Mali)
Language: fr
Country: ML

Locale: fr_MQ
DisplayName:French(Martinique)
Language: fr
Country: MQ

Locale: fr_MR
DisplayName:French(Mauritania)
Language: fr
Country: MR

Locale: fr_MU
DisplayName:French(Mauritius)
Language: fr
Country: MU

Locale: fr_NC
DisplayName:French(New Caledonia)
Language: fr
Country: NC

Locale: fr_NE
DisplayName:French(Niger)
Language: fr
Country: NE

Locale: fr_PF
DisplayName:French(French Polynesia)
Language: fr
Country: PF

Locale: fr_PM
DisplayName:French(Saint Pierre and Micron)
Language: fr
Country: PM

Locale: fr_RE
DisplayName:French(Reunion)
Language: fr
Country: RE

Locale: fr_RW
DisplayName:French(Rwanda)
Language: fr
Country: RW

Locale: fr_SC
DisplayName:French(Seychelles)
Language: fr
Country: SC

Locale: fr_SN
DisplayName:French(Senegal)
Language: fr
Country: SN

Locale: fr_SY
DisplayName:French(Syria)
Language: fr
Country: SY

Locale: fr_TD
DisplayName:French(Chad)
Language: fr
Country: TD

Locale: fr_TG
DisplayName:French(Togo)
Language: fr
Country: TG

Locale: fr_TN
DisplayName:French(Tunisia)
Language: fr
Country: TN

Locale: fr_VU
DisplayName:French(Vanuatu)
Language: fr
Country: VU

Locale: fr_WF
DisplayName:French(Wallis and Futuna)
Language: fr
Country: WF

Locale: fr_YT
DisplayName:French(Mayotte)
Language: fr
Country: YT

Locale: fur
DisplayName:Friulian
Language: fur
Country: 

Locale: fur_IT
DisplayName:Friulian(Italy)
Language: fur
Country: IT

Locale: fy
DisplayName:West Frisian
Language: fy
Country: 

Locale: fy_NL
DisplayName:West Frisian(Netherlands)
Language: fy
Country: NL

Locale: ga
DisplayName:Irish
Language: ga
Country: 

Locale: ga_IE
DisplayName:Irish(Ireland)
Language: ga
Country: IE

Locale: gd
DisplayName:Scottish Gaelic
Language: gd
Country: 

Locale: gd_GB
DisplayName:Scottish Gaelic(England)
Language: gd
Country: GB

Locale: gl
DisplayName:Galician
Language: gl
Country: 

Locale: gl_ES
DisplayName:Galician(Spain)
Language: gl
Country: ES

Locale: gsw
DisplayName:Swiss German
Language: gsw
Country: 

Locale: gsw_CH
DisplayName:Swiss German(Switzerland)
Language: gsw
Country: CH

Locale: gsw_FR
DisplayName:Swiss German(France)
Language: gsw
Country: FR

Locale: gsw_LI
DisplayName:Swiss German(Liechtenstein)
Language: gsw
Country: LI

Locale: gu
DisplayName:Gujarati
Language: gu
Country: 

Locale: gu_IN
DisplayName:Gujarati(India)
Language: gu
Country: IN

Locale: guz
DisplayName:Gusii
Language: guz
Country: 

Locale: guz_KE
DisplayName:Gusii(Kenya)
Language: guz
Country: KE

Locale: gv
DisplayName:Manx
Language: gv
Country: 

Locale: gv_IM
DisplayName:Manx(Isle of Man)
Language: gv
Country: IM

Locale: ha
DisplayName:Hausa
Language: ha
Country: 

Locale: ha_GH
DisplayName:Hausa(Ghana)
Language: ha
Country: GH

Locale: ha_NE
DisplayName:Hausa(Niger)
Language: ha
Country: NE

Locale: ha_NG
DisplayName:Hausa(Nigeria)
Language: ha
Country: NG

Locale: haw
DisplayName:Hawaiian
Language: haw
Country: 

Locale: haw_US
DisplayName:Hawaiian(United States of America)
Language: haw
Country: US

Locale: hi
DisplayName:Hindi
Language: hi
Country: 

Locale: hi_IN
DisplayName:Hindi(India)
Language: hi
Country: IN

Locale: hr
DisplayName:Croatian
Language: hr
Country: 

Locale: hr_BA
DisplayName:Croatian(Bosnia-Herzegovina)
Language: hr
Country: BA

Locale: hr_HR
DisplayName:Croatian(Croatia)
Language: hr
Country: HR

Locale: hsb
DisplayName:Upper Sorbian
Language: hsb
Country: 

Locale: hsb_DE
DisplayName:Upper Sorbian(Germany)
Language: hsb
Country: DE

Locale: hu
DisplayName:Hungarian
Language: hu
Country: 

Locale: hu_HU
DisplayName:Hungarian(Hungary)
Language: hu
Country: HU

Locale: hy
DisplayName:Armenian
Language: hy
Country: 

Locale: hy_AM
DisplayName:Armenian(Armenia)
Language: hy
Country: AM

Locale: ig
DisplayName:Igbo
Language: ig
Country: 

Locale: ig_NG
DisplayName:Igbo(Nigeria)
Language: ig
Country: NG

Locale: ii
DisplayName:Sichuan Yi
Language: ii
Country: 

Locale: ii_CN
DisplayName:Sichuan Yi(China)
Language: ii
Country: CN

Locale: in
DisplayName:Indonesian
Language: in
Country: 

Locale: in_ID
DisplayName:Indonesian(Indonesia)
Language: in
Country: ID

Locale: is
DisplayName:Icelandic
Language: is
Country: 

Locale: is_IS
DisplayName:Icelandic(Iceland)
Language: is
Country: IS

Locale: it
DisplayName:Italian
Language: it
Country: 

Locale: it_CH
DisplayName:Italian(Switzerland)
Language: it
Country: CH

Locale: it_IT
DisplayName:Italian(Italy)
Language: it
Country: IT

Locale: it_SM
DisplayName:Italian(San Marino)
Language: it
Country: SM

Locale: it_VA
DisplayName:Italian(Vatican City)
Language: it
Country: VA

Locale: iw
DisplayName:Hebrew
Language: iw
Country: 

Locale: iw_IL
DisplayName:Hebrew(Israel)
Language: iw
Country: IL

Locale: ja
DisplayName:Japanese
Language: ja
Country: 

Locale: ja_JP
DisplayName:Japanese(Japan)
Language: ja
Country: JP

Locale: ja_JP_JP_#u-ca-japanese
DisplayName:Japanese(Japan, JP, Japanese calendar)
Language: ja
Country: JP

Locale: jgo
DisplayName:Ngomba
Language: jgo
Country: 

Locale: jgo_CM
DisplayName:Ngomba(Cameroon)
Language: jgo
Country: CM

Locale: ji
DisplayName:Yiddish
Language: ji
Country: 

Locale: ji_001
DisplayName:Yiddish(world)
Language: ji
Country: 001

Locale: jmc
DisplayName:Machame
Language: jmc
Country: 

Locale: jmc_TZ
DisplayName:Machame(Tanzania)
Language: jmc
Country: TZ

Locale: ka
DisplayName:Georgian
Language: ka
Country: 

Locale: ka_GE
DisplayName:Georgian(Georgia)
Language: ka
Country: GE

Locale: kab
DisplayName:Kabyle
Language: kab
Country: 

Locale: kab_DZ
DisplayName:Kabyle(Algeria)
Language: kab
Country: DZ

Locale: kam
DisplayName:Kamba
Language: kam
Country: 

Locale: kam_KE
DisplayName:Kamba(Kenya)
Language: kam
Country: KE

Locale: kde
DisplayName:Makonde
Language: kde
Country: 

Locale: kde_TZ
DisplayName:Makonde(Tanzania)
Language: kde
Country: TZ

Locale: kea
DisplayName:Cape Verde Creole
Language: kea
Country: 

Locale: kea_CV
DisplayName:Cape Verde Creole(Cape Verde)
Language: kea
Country: CV

Locale: khq
DisplayName:Koyra Chiini
Language: khq
Country: 

Locale: khq_ML
DisplayName:Koyra Chiini(Mali)
Language: khq
Country: ML

Locale: ki
DisplayName:Kikuyu
Language: ki
Country: 

Locale: ki_KE
DisplayName:Kikuyu(Kenya)
Language: ki
Country: KE

Locale: kk
DisplayName:Kazakh
Language: kk
Country: 

Locale: kk_KZ
DisplayName:Kazakh(Kazakhstan)
Language: kk
Country: KZ

Locale: kkj
DisplayName:Kako
Language: kkj
Country: 

Locale: kkj_CM
DisplayName:Kako(Cameroon)
Language: kkj
Country: CM

Locale: kl
DisplayName:Greenlandic
Language: kl
Country: 

Locale: kl_GL
DisplayName:Greenlandic(Greenland)
Language: kl
Country: GL

Locale: kln
DisplayName:Kalenjin
Language: kln
Country: 

Locale: kln_KE
DisplayName:Kalenjin(Kenya)
Language: kln
Country: KE

Locale: km
DisplayName:Khmer
Language: km
Country: 

Locale: km_KH
DisplayName:Khmer(Cambodia)
Language: km
Country: KH

Locale: kn
DisplayName:Kannada
Language: kn
Country: 

Locale: kn_IN
DisplayName:Kannada(India)
Language: kn
Country: IN

Locale: ko
DisplayName:Korean
Language: ko
Country: 

Locale: ko_KP
DisplayName:Korean(North Korea)
Language: ko
Country: KP

Locale: ko_KR
DisplayName:Korean(Korea)
Language: ko
Country: KR

Locale: kok
DisplayName:Konkani
Language: kok
Country: 

Locale: kok_IN
DisplayName:Konkani(India)
Language: kok
Country: IN

Locale: ks
DisplayName:Kashmir
Language: ks
Country: 

Locale: ks_IN
DisplayName:Kashmir(India)
Language: ks
Country: IN

Locale: ksb
DisplayName:Shambala
Language: ksb
Country: 

Locale: ksb_TZ
DisplayName:Shambala(Tanzania)
Language: ksb
Country: TZ

Locale: ksf
DisplayName:Bafia
Language: ksf
Country: 

Locale: ksf_CM
DisplayName:Bafia(Cameroon)
Language: ksf
Country: CM

Locale: ksh
DisplayName:Colognian
Language: ksh
Country: 

Locale: ksh_DE
DisplayName:Colognian(Germany)
Language: ksh
Country: DE

Locale: kw
DisplayName:Cornish
Language: kw
Country: 

Locale: kw_GB
DisplayName:Cornish(England)
Language: kw
Country: GB

Locale: ky
DisplayName:Kyrgyz
Language: ky
Country: 

Locale: ky_KG
DisplayName:Kyrgyz(Kyrgyzstan)
Language: ky
Country: KG

Locale: lag
DisplayName:Langi
Language: lag
Country: 

Locale: lag_TZ
DisplayName:Langi(Tanzania)
Language: lag
Country: TZ

Locale: lb
DisplayName:Luxembourgish
Language: lb
Country: 

Locale: lb_LU
DisplayName:Luxembourgish(Luxembourg)
Language: lb
Country: LU

Locale: lg
DisplayName:Luganda
Language: lg
Country: 

Locale: lg_UG
DisplayName:Luganda(Uganda)
Language: lg
Country: UG

Locale: lkt
DisplayName:Lakota
Language: lkt
Country: 

Locale: lkt_US
DisplayName:Lakota(United States of America)
Language: lkt
Country: US

Locale: ln
DisplayName:Lingala
Language: ln
Country: 

Locale: ln_AO
DisplayName:Lingala(Angola)
Language: ln
Country: AO

Locale: ln_CD
DisplayName:Lingala(Democratic Republic of the Congo(Kinshasa))
Language: ln
Country: CD

Locale: ln_CF
DisplayName:Lingala(Central African Republic)
Language: ln
Country: CF

Locale: ln_CG
DisplayName:Lingala(Republic of the Congo(Brazzaville))
Language: ln
Country: CG

Locale: lo
DisplayName:Lao
Language: lo
Country: 

Locale: lo_LA
DisplayName:Lao(Laos)
Language: lo
Country: LA

Locale: lrc
DisplayName:Northern Luri
Language: lrc
Country: 

Locale: lrc_IQ
DisplayName:Northern Luri(Iraq)
Language: lrc
Country: IQ

Locale: lrc_IR
DisplayName:Northern Luri(Iran)
Language: lrc
Country: IR

Locale: lt
DisplayName:Lithuanian
Language: lt
Country: 

Locale: lt_LT
DisplayName:Lithuanian(Lithuania)
Language: lt
Country: LT

Locale: lu
DisplayName:Luba Katanga
Language: lu
Country: 

Locale: lu_CD
DisplayName:Luba Katanga(Democratic Republic of the Congo(Kinshasa))
Language: lu
Country: CD

Locale: luo
DisplayName:Dholuo
Language: luo
Country: 

Locale: luo_KE
DisplayName:Dholuo(Kenya)
Language: luo
Country: KE

Locale: luy
DisplayName:Luyia
Language: luy
Country: 

Locale: luy_KE
DisplayName:Luyia(Kenya)
Language: luy
Country: KE

Locale: lv
DisplayName:Latvian
Language: lv
Country: 

Locale: lv_LV
DisplayName:Latvian(Latvia)
Language: lv
Country: LV

Locale: mas
DisplayName:Maasai
Language: mas
Country: 

Locale: mas_KE
DisplayName:Maasai(Kenya)
Language: mas
Country: KE

Locale: mas_TZ
DisplayName:Maasai(Tanzania)
Language: mas
Country: TZ

Locale: mer
DisplayName:Meru
Language: mer
Country: 

Locale: mer_KE
DisplayName:Meru(Kenya)
Language: mer
Country: KE

Locale: mfe
DisplayName:Mauritius Creole
Language: mfe
Country: 

Locale: mfe_MU
DisplayName:Mauritius Creole(Mauritius)
Language: mfe
Country: MU

Locale: mg
DisplayName:Malagasy
Language: mg
Country: 

Locale: mg_MG
DisplayName:Malagasy(Madagascar)
Language: mg
Country: MG

Locale: mgh
DisplayName:Makhuwa-Meetto
Language: mgh
Country: 

Locale: mgh_MZ
DisplayName:Makhuwa-Meetto(Mozambique)
Language: mgh
Country: MZ

Locale: mgo
DisplayName:Meta language
Language: mgo
Country: 

Locale: mgo_CM
DisplayName:Meta language(Cameroon)
Language: mgo
Country: CM

Locale: mk
DisplayName:Macedonian
Language: mk
Country: 

Locale: mk_MK
DisplayName:Macedonian(Macedonia)
Language: mk
Country: MK

Locale: ml
DisplayName:Malayalam
Language: ml
Country: 

Locale: ml_IN
DisplayName:Malayalam(India)
Language: ml
Country: IN

Locale: mn
DisplayName:Mongolian
Language: mn
Country: 

Locale: mn_MN
DisplayName:Mongolian(Mongolia)
Language: mn
Country: MN

Locale: mr
DisplayName:Marathi
Language: mr
Country: 

Locale: mr_IN
DisplayName:Marathi(India)
Language: mr
Country: IN

Locale: ms
DisplayName:Malay
Language: ms
Country: 

Locale: ms_BN
DisplayName:Malay(Brunei)
Language: ms
Country: BN

Locale: ms_MY
DisplayName:Malay(Malaysia)
Language: ms
Country: MY

Locale: ms_SG
DisplayName:Malay(Singapore)
Language: ms
Country: SG

Locale: mt
DisplayName:Maltese
Language: mt
Country: 

Locale: mt_MT
DisplayName:Maltese(Malta)
Language: mt
Country: MT

Locale: mua
DisplayName:Mundang
Language: mua
Country: 

Locale: mua_CM
DisplayName:Mundang(Cameroon)
Language: mua
Country: CM

Locale: my
DisplayName:Myanmar
Language: my
Country: 

Locale: my_MM
DisplayName:Myanmar(Myanmar(Burma))
Language: my
Country: MM

Locale: mzn
DisplayName:Mazandaran
Language: mzn
Country: 

Locale: mzn_IR
DisplayName:Mazandaran(Iran)
Language: mzn
Country: IR

Locale: naq
DisplayName:Khoekhoe
Language: naq
Country: 

Locale: naq_NA
DisplayName:Khoekhoe(Namibia)
Language: naq
Country: NA

Locale: nb
DisplayName:Norwegian(Bokmål)
Language: nb
Country: 

Locale: nb_NO
DisplayName:Norwegian(Bokmål) (Norway)
Language: nb
Country: NO

Locale: nb_SJ
DisplayName:Norwegian(Bokmål) (Svalbard and Jan Mayen)
Language: nb
Country: SJ

Locale: nd
DisplayName:Northern Ndebele
Language: nd
Country: 

Locale: nd_ZW
DisplayName:Northern Ndebele(Zimbabwe)
Language: nd
Country: ZW

Locale: nds
DisplayName:Low German
Language: nds
Country: 

Locale: nds_DE
DisplayName:Low German(Germany)
Language: nds
Country: DE

Locale: nds_NL
DisplayName:Low German(Netherlands)
Language: nds
Country: NL

Locale: ne
DisplayName:Nepali
Language: ne
Country: 

Locale: ne_IN
DisplayName:Nepali(India)
Language: ne
Country: IN

Locale: ne_NP
DisplayName:Nepali(Nepal)
Language: ne
Country: NP

Locale: nl
DisplayName:Dutch
Language: nl
Country: 

Locale: nl_AW
DisplayName:Dutch(Aruba)
Language: nl
Country: AW

Locale: nl_BE
DisplayName:Dutch(Belgium)
Language: nl
Country: BE

Locale: nl_BQ
DisplayName:Dutch(Dutch Caribbean)
Language: nl
Country: BQ

Locale: nl_CW
DisplayName:Dutch(Curacao)
Language: nl
Country: CW

Locale: nl_NL
DisplayName:Dutch(Netherlands)
Language: nl
Country: NL

Locale: nl_SR
DisplayName:Dutch(Suriname)
Language: nl
Country: SR

Locale: nl_SX
DisplayName:Dutch(Sint Maarten)
Language: nl
Country: SX

Locale: nmg
DisplayName:Kwasio
Language: nmg
Country: 

Locale: nmg_CM
DisplayName:Kwasio(Cameroon)
Language: nmg
Country: CM

Locale: nn
DisplayName:Norwegian(Nynorsk)
Language: nn
Country: 

Locale: nn_NO
DisplayName:Norwegian(Nynorsk) (Norway)
Language: nn
Country: NO

Locale: nnh
DisplayName:Ngiemboon
Language: nnh
Country: 

Locale: nnh_CM
DisplayName:Ngiemboon(Cameroon)
Language: nnh
Country: CM

Locale: no
DisplayName:Norwegian
Language: no
Country: 

Locale: no_NO
DisplayName:Norwegian(Norway)
Language: no
Country: NO

Locale: no_NO_NY
DisplayName:Norwegian(Nynorsk, Norway)
Language: no
Country: NO

Locale: nus
DisplayName:Nuer
Language: nus
Country: 

Locale: nus_SS
DisplayName:Nuer(South Sudan)
Language: nus
Country: SS

Locale: nyn
DisplayName:Nkore
Language: nyn
Country: 

Locale: nyn_UG
DisplayName:Nkore(Uganda)
Language: nyn
Country: UG

Locale: om
DisplayName:Oromo
Language: om
Country: 

Locale: om_ET
DisplayName:Oromo(Ethiopia)
Language: om
Country: ET

Locale: om_KE
DisplayName:Oromo(Kenya)
Language: om
Country: KE

Locale: or
DisplayName:Odia
Language: or
Country: 

Locale: or_IN
DisplayName:Odia(India)
Language: or
Country: IN

Locale: os
DisplayName:Ossetian
Language: os
Country: 

Locale: os_GE
DisplayName:Ossetian(Georgia)
Language: os
Country: GE

Locale: os_RU
DisplayName:Ossetian(Russia)
Language: os
Country: RU

Locale: pa
DisplayName:Punjabi
Language: pa
Country: 

Locale: pa_IN_#Guru
DisplayName:Punjabi(Gurmukhi, India)
Language: pa
Country: IN

Locale: pa_PK_#Arab
DisplayName:Punjabi(Arabic letters, Pakistan)
Language: pa
Country: PK

Locale: pa__#Arab
DisplayName:Punjabi(Arabic letters)
Language: pa
Country: 

Locale: pa__#Guru
DisplayName:Punjabi(Gurmukhi)
Language: pa
Country: 

Locale: pl
DisplayName:Polish
Language: pl
Country: 

Locale: pl_PL
DisplayName:Polish(Poland)
Language: pl
Country: PL

Locale: prg
DisplayName:Prussian
Language: prg
Country: 

Locale: prg_001
DisplayName:Prussian(world)
Language: prg
Country: 001

Locale: ps
DisplayName:Pashto
Language: ps
Country: 

Locale: ps_AF
DisplayName:Pashto(Afghanistan)
Language: ps
Country: AF

Locale: pt
DisplayName:Portuguese
Language: pt
Country: 

Locale: pt_AO
DisplayName:Portuguese(Angola)
Language: pt
Country: AO

Locale: pt_BR
DisplayName:Portuguese(Brazil)
Language: pt
Country: BR

Locale: pt_CH
DisplayName:Portuguese(Switzerland)
Language: pt
Country: CH

Locale: pt_CV
DisplayName:Portuguese(Cape Verde)
Language: pt
Country: CV

Locale: pt_GQ
DisplayName:Portuguese(Equatorial Guinea)
Language: pt
Country: GQ

Locale: pt_GW
DisplayName:Portuguese(Guinea-Bissau)
Language: pt
Country: GW

Locale: pt_LU
DisplayName:Portuguese(Luxembourg)
Language: pt
Country: LU

Locale: pt_MO
DisplayName:Portuguese(Macau SAR, People's Republic of China)
Language: pt
Country: MO

Locale: pt_MZ
DisplayName:Portuguese(Mozambique)
Language: pt
Country: MZ

Locale: pt_PT
DisplayName:Portuguese(Portugal)
Language: pt
Country: PT

Locale: pt_ST
DisplayName:Portuguese(Sao Tome Principe)
Language: pt
Country: ST

Locale: pt_TL
DisplayName:Portuguese(East Timor)
Language: pt
Country: TL

Locale: qu
DisplayName:Quechua
Language: qu
Country: 

Locale: qu_BO
DisplayName:Quechua(Bolivia)
Language: qu
Country: BO

Locale: qu_EC
DisplayName:Quechua(Ecuador)
Language: qu
Country: EC

Locale: qu_PE
DisplayName:Quechua(Peru)
Language: qu
Country: PE

Locale: rm
DisplayName:Romansh
Language: rm
Country: 

Locale: rm_CH
DisplayName:Romansh(Switzerland)
Language: rm
Country: CH

Locale: rn
DisplayName:Kirundi
Language: rn
Country: 

Locale: rn_BI
DisplayName:Kirundi(Burundi)
Language: rn
Country: BI

Locale: ro
DisplayName:Romanian
Language: ro
Country: 

Locale: ro_MD
DisplayName:Romanian(Moldova)
Language: ro
Country: MD

Locale: ro_RO
DisplayName:Romanian(Romania)
Language: ro
Country: RO

Locale: rof
DisplayName:Rombo
Language: rof
Country: 

Locale: rof_TZ
DisplayName:Rombo(Tanzania)
Language: rof
Country: TZ

Locale: ru
DisplayName:Russian
Language: ru
Country: 

Locale: ru_BY
DisplayName:Russian(Belarus)
Language: ru
Country: BY

Locale: ru_KG
DisplayName:Russian(Kyrgyzstan)
Language: ru
Country: KG

Locale: ru_KZ
DisplayName:Russian(Kazakhstan)
Language: ru
Country: KZ

Locale: ru_MD
DisplayName:Russian(Moldova)
Language: ru
Country: MD

Locale: ru_RU
DisplayName:Russian(Russia)
Language: ru
Country: RU

Locale: ru_UA
DisplayName:Russian(Ukraine)
Language: ru
Country: UA

Locale: rw
DisplayName:Kinyarwanda
Language: rw
Country: 

Locale: rw_RW
DisplayName:Kinyarwanda(Rwanda)
Language: rw
Country: RW

Locale: rwk
DisplayName:Rwa
Language: rwk
Country: 

Locale: rwk_TZ
DisplayName:Rwa(Tanzania)
Language: rwk
Country: TZ

Locale: sah
DisplayName:Sakha
Language: sah
Country: 

Locale: sah_RU
DisplayName:Sakha(Russia)
Language: sah
Country: RU

Locale: saq
DisplayName:Samburu
Language: saq
Country: 

Locale: saq_KE
DisplayName:Samburu(Kenya)
Language: saq
Country: KE

Locale: sbp
DisplayName:Sangu
Language: sbp
Country: 

Locale: sbp_TZ
DisplayName:Sangu(Tanzania)
Language: sbp
Country: TZ

Locale: sd
DisplayName:Sindhi
Language: sd
Country: 

Locale: sd_PK
DisplayName:Sindhi(Pakistan)
Language: sd
Country: PK

Locale: se
DisplayName:Northern Sami
Language: se
Country: 

Locale: se_FI
DisplayName:Northern Sami(Finland)
Language: se
Country: FI

Locale: se_NO
DisplayName:Northern Sami(Norway)
Language: se
Country: NO

Locale: se_SE
DisplayName:Northern Sami(Sweden)
Language: se
Country: SE

Locale: seh
DisplayName:Sena
Language: seh
Country: 

Locale: seh_MZ
DisplayName:Sena(Mozambique)
Language: seh
Country: MZ

Locale: ses
DisplayName:Koyraboro Senni
Language: ses
Country: 

Locale: ses_ML
DisplayName:Koyraboro Senni(Mali)
Language: ses
Country: ML

Locale: sg
DisplayName:Sango
Language: sg
Country: 

Locale: sg_CF
DisplayName:Sango(Central African Republic)
Language: sg
Country: CF

Locale: shi
DisplayName:Tachelhit
Language: shi
Country: 

Locale: shi_MA_#Latn
DisplayName:Tachelhit(Latin letters, Morocco)
Language: shi
Country: MA

Locale: shi_MA_#Tfng
DisplayName:Tachelhit(Tifinagh, Morocco)
Language: shi
Country: MA

Locale: shi__#Latn
DisplayName:Tachelhit(Latin letters)
Language: shi
Country: 

Locale: shi__#Tfng
DisplayName:Tachelhit(Tifinagh)
Language: shi
Country: 

Locale: si
DisplayName:Sinhala
Language: si
Country: 

Locale: si_LK
DisplayName:Sinhala(Sri Lanka)
Language: si
Country: LK

Locale: sk
DisplayName:Slovak
Language: sk
Country: 

Locale: sk_SK
DisplayName:Slovak(Slovakia)
Language: sk
Country: SK

Locale: sl
DisplayName:Slovenian
Language: sl
Country: 

Locale: sl_SI
DisplayName:Slovenian(Slovenia)
Language: sl
Country: SI

Locale: smn
DisplayName:Inari Sami
Language: smn
Country: 

Locale: smn_FI
DisplayName:Inari Sami(Finland)
Language: smn
Country: FI

Locale: sn
DisplayName:Shona
Language: sn
Country: 

Locale: sn_ZW
DisplayName:Shona(Zimbabwe)
Language: sn
Country: ZW

Locale: so
DisplayName:Somali
Language: so
Country: 

Locale: so_DJ
DisplayName:Somali(Djibouti)
Language: so
Country: DJ

Locale: so_ET
DisplayName:Somali(Ethiopia)
Language: so
Country: ET

Locale: so_KE
DisplayName:Somali(Kenya)
Language: so
Country: KE

Locale: so_SO
DisplayName:Somali(Somalia)
Language: so
Country: SO

Locale: sq
DisplayName:Albanian
Language: sq
Country: 

Locale: sq_AL
DisplayName:Albanian(Albania)
Language: sq
Country: AL

Locale: sq_MK
DisplayName:Albanian(Macedonia)
Language: sq
Country: MK

Locale: sq_XK
DisplayName:Albanian(Kosovo)
Language: sq
Country: XK

Locale: sr
DisplayName:Serbian
Language: sr
Country: 

Locale: sr_BA
DisplayName:Serbian(Bosnia-Herzegovina)
Language: sr
Country: BA

Locale: sr_BA_#Cyrl
DisplayName:Serbian(Cyrillic, Bosnia and Herzegovina)
Language: sr
Country: BA

Locale: sr_BA_#Latn
DisplayName:Serbian(Latin letters, Bosnia and Herzegovina)
Language: sr
Country: BA

Locale: sr_CS
DisplayName:Serbian(Serbia and Montenegro)
Language: sr
Country: CS

Locale: sr_ME
DisplayName:Serbian(Montenegro)
Language: sr
Country: ME

Locale: sr_ME_#Cyrl
DisplayName:Serbian(Cyrillic, Montenegro)
Language: sr
Country: ME

Locale: sr_ME_#Latn
DisplayName:Serbian(Latin letters, Montenegro)
Language: sr
Country: ME

Locale: sr_RS
DisplayName:Serbian(Serbia)
Language: sr
Country: RS

Locale: sr_RS_#Cyrl
DisplayName:Serbian(Cyrillic, Serbian)
Language: sr
Country: RS

Locale: sr_RS_#Latn
DisplayName:Serbian(Latin letters, serbia)
Language: sr
Country: RS

Locale: sr_XK_#Cyrl
DisplayName:Serbian(Cyrillic, Kosovo)
Language: sr
Country: XK

Locale: sr_XK_#Latn
DisplayName:Serbian(Latin letters, Kosovo)
Language: sr
Country: XK

Locale: sr__#Cyrl
DisplayName:Serbian(Cyrillic)
Language: sr
Country: 

Locale: sr__#Latn
DisplayName:Serbian(Latin letters)
Language: sr
Country: 

Locale: sv
DisplayName:Swedish
Language: sv
Country: 

Locale: sv_AX
DisplayName:Swedish(Aland Islands)
Language: sv
Country: AX

Locale: sv_FI
DisplayName:Swedish(Finland)
Language: sv
Country: FI

Locale: sv_SE
DisplayName:Swedish(Sweden)
Language: sv
Country: SE

Locale: sw
DisplayName:Swahili
Language: sw
Country: 

Locale: sw_CD
DisplayName:Swahili(Democratic Republic of the Congo(Kinshasa))
Language: sw
Country: CD

Locale: sw_KE
DisplayName:Swahili(Kenya)
Language: sw
Country: KE

Locale: sw_TZ
DisplayName:Swahili(Tanzania)
Language: sw
Country: TZ

Locale: sw_UG
DisplayName:Swahili(Uganda)
Language: sw
Country: UG

Locale: ta
DisplayName:Tamil
Language: ta
Country: 

Locale: ta_IN
DisplayName:Tamil(India)
Language: ta
Country: IN

Locale: ta_LK
DisplayName:Tamil(Sri Lanka)
Language: ta
Country: LK

Locale: ta_MY
DisplayName:Tamil(Malaysia)
Language: ta
Country: MY

Locale: ta_SG
DisplayName:Tamil(Singapore)
Language: ta
Country: SG

Locale: te
DisplayName:Telugu
Language: te
Country: 

Locale: te_IN
DisplayName:Telugu(India)
Language: te
Country: IN

Locale: teo
DisplayName:Teso
Language: teo
Country: 

Locale: teo_KE
DisplayName:Teso(Kenya)
Language: teo
Country: KE

Locale: teo_UG
DisplayName:Teso(Uganda)
Language: teo
Country: UG

Locale: tg
DisplayName:Tajik
Language: tg
Country: 

Locale: tg_TJ
DisplayName:Tajik(Tajikistan)
Language: tg
Country: TJ

Locale: th
DisplayName:Thai
Language: th
Country: 

Locale: th_TH
DisplayName:Thai(Thailand)
Language: th
Country: TH

Locale: th_TH_TH_#u-nu-thai
DisplayName:Thai(Thai, TH, Thai numbers)
Language: th
Country: TH

Locale: ti
DisplayName:Tigrinya
Language: ti
Country: 

Locale: ti_ER
DisplayName:Tigrinya(Eritrea)
Language: ti
Country: ER

Locale: ti_ET
DisplayName:Tigrinya(Ethiopia)
Language: ti
Country: ET

Locale: tk
DisplayName:Turkmen
Language: tk
Country: 

Locale: tk_TM
DisplayName:Turkmen(Turkmenistan)
Language: tk
Country: TM

Locale: to
DisplayName:Tongan
Language: to
Country: 

Locale: to_TO
DisplayName:Tongan(Tonga)
Language: to
Country: TO

Locale: tr
DisplayName:Turkish language
Language: tr
Country: 

Locale: tr_CY
DisplayName:Turkish language(Cyprus)
Language: tr
Country: CY

Locale: tr_TR
DisplayName:Turkish language(Turkey)
Language: tr
Country: TR

Locale: tt
DisplayName:Tatar
Language: tt
Country: 

Locale: tt_RU
DisplayName:Tatar(Russia)
Language: tt
Country: RU

Locale: twq
DisplayName:Tasawaq
Language: twq
Country: 

Locale: twq_NE
DisplayName:Tasawaq(Niger)
Language: twq
Country: NE

Locale: tzm
DisplayName:Central Atlas Tamazight
Language: tzm
Country: 

Locale: tzm_MA
DisplayName:Central Atlas Tamazight(Morocco)
Language: tzm
Country: MA

Locale: ug
DisplayName:Uyghur
Language: ug
Country: 

Locale: ug_CN
DisplayName:Uyghur(China)
Language: ug
Country: CN

Locale: uk
DisplayName:Ukrainian
Language: uk
Country: 

Locale: uk_UA
DisplayName:Ukrainian(Ukraine)
Language: uk
Country: UA

Locale: ur
DisplayName:Urdu
Language: ur
Country: 

Locale: ur_IN
DisplayName:Urdu(India)
Language: ur
Country: IN

Locale: ur_PK
DisplayName:Urdu(Pakistan)
Language: ur
Country: PK

Locale: uz
DisplayName:Uzbek
Language: uz
Country: 

Locale: uz_AF_#Arab
DisplayName:Uzbek(Arabic letters, afghanistan)
Language: uz
Country: AF

Locale: uz_UZ_#Cyrl
DisplayName:Uzbek(Cyrillic, Uzbekistan)
Language: uz
Country: UZ

Locale: uz_UZ_#Latn
DisplayName:Uzbek(Latin letters, Uzbekistan)
Language: uz
Country: UZ

Locale: uz__#Arab
DisplayName:Uzbek(Arabic letters)
Language: uz
Country: 

Locale: uz__#Cyrl
DisplayName:Uzbek(Cyrillic)
Language: uz
Country: 

Locale: uz__#Latn
DisplayName:Uzbek(Latin letters)
Language: uz
Country: 

Locale: vai
DisplayName:Vai
Language: vai
Country: 

Locale: vai_LR_#Latn
DisplayName:Vai(Latin letters, Liberia)
Language: vai
Country: LR

Locale: vai_LR_#Vaii
DisplayName:Vai(Vai syllabus, Liberia)
Language: vai
Country: LR

Locale: vai__#Latn
DisplayName:Vai(Latin letters)
Language: vai
Country: 

Locale: vai__#Vaii
DisplayName:Vai(Vai syllabus)
Language: vai
Country: 

Locale: vi
DisplayName:Vietnamese
Language: vi
Country: 

Locale: vi_VN
DisplayName:Vietnamese(Vietnam)
Language: vi
Country: VN

Locale: vo
DisplayName:Volapük
Language: vo
Country: 

Locale: vo_001
DisplayName:Volapük(world)
Language: vo
Country: 001

Locale: vun
DisplayName:Vunjo
Language: vun
Country: 

Locale: vun_TZ
DisplayName:Vunjo(Tanzania)
Language: vun
Country: TZ

Locale: wae
DisplayName:Walser
Language: wae
Country: 

Locale: wae_CH
DisplayName:Walser(Switzerland)
Language: wae
Country: CH

Locale: wo
DisplayName:Wolof
Language: wo
Country: 

Locale: wo_SN
DisplayName:Wolof(Senegal)
Language: wo
Country: SN

Locale: xog
DisplayName:Soga
Language: xog
Country: 

Locale: xog_UG
DisplayName:Soga(Uganda)
Language: xog
Country: UG

Locale: yav
DisplayName:Yangben
Language: yav
Country: 

Locale: yav_CM
DisplayName:Yangben(Cameroon)
Language: yav
Country: CM

Locale: yo
DisplayName:Yoruba
Language: yo
Country: 

Locale: yo_BJ
DisplayName:Yoruba(Benin)
Language: yo
Country: BJ

Locale: yo_NG
DisplayName:Yoruba(Nigeria)
Language: yo
Country: NG

Locale: yue
DisplayName:Cantonese
Language: yue
Country: 

Locale: yue_CN_#Hans
DisplayName:Cantonese(Simplified Chinese)
Language: yue
Country: CN

Locale: yue_HK_#Hant
DisplayName:Cantonese(Traditional Chinese, Hong Kong Special Administrative Region, People's Republic of China)
Language: yue
Country: HK

Locale: yue__#Hans
DisplayName:Cantonese(Simplified characters)
Language: yue
Country: 

Locale: yue__#Hant
DisplayName:Cantonese(Traditional Chinese)
Language: yue
Country: 

Locale: zgh
DisplayName:Standard Moroccan Berber
Language: zgh
Country: 

Locale: zgh_MA
DisplayName:Standard Moroccan Berber(Morocco)
Language: zgh
Country: MA

Locale: zh
DisplayName:Chinese
Language: zh
Country: 

Locale: zh_CN
DisplayName:Chinese(China)
Language: zh
Country: CN

Locale: zh_CN_#Hans
DisplayName:Chinese(Simplified Chinese)
Language: zh
Country: CN

Locale: zh_HK
DisplayName:Chinese(People's Republic of China Hong Kong Special Administrative Region)
Language: zh
Country: HK

Locale: zh_HK_#Hans
DisplayName:Chinese(Simplified Chinese, Hong Kong Special Administrative Region, People's Republic of China)
Language: zh
Country: HK

Locale: zh_HK_#Hant
DisplayName:Chinese(Traditional Chinese, Hong Kong Special Administrative Region, People's Republic of China)
Language: zh
Country: HK

Locale: zh_MO_#Hans
DisplayName:Chinese(Simplified Chinese, Macau SAR, People's Republic of China)
Language: zh
Country: MO

Locale: zh_MO_#Hant
DisplayName:Chinese(Traditional Chinese, Macau SAR, People's Republic of China)
Language: zh
Country: MO

Locale: zh_SG
DisplayName:Chinese(Singapore)
Language: zh
Country: SG

Locale: zh_SG_#Hans
DisplayName:Chinese(Simplified Chinese, Singapore)
Language: zh
Country: SG

Locale: zh_TW
DisplayName:Chinese(Taiwan)
Language: zh
Country: TW

Locale: zh_TW_#Hant
DisplayName:Chinese(Traditional Chinese, Taiwan)
Language: zh
Country: TW

Locale: zh__#Hans
DisplayName:Chinese(Simplified characters)
Language: zh
Country: 

Locale: zh__#Hant
DisplayName:Chinese(Traditional Chinese)
Language: zh
Country: 

Locale: zu
DisplayName:Zulu
Language: zu
Country: 

Locale: zu_ZA
DisplayName:Zulu(South Africa)
Language: zu
Country: ZA

Root locale

There are locale objects that have an empty string set in both the language and the country, which is probably the root locale.

Locale (Java SE 11 & JDK 11 )

public static final Locale ROOT A constant used for the root locale. The root locale is a locale where the language, country, and variant are empty strings (""). It is considered the base locale for all locales and is used as a language / country-neutral locale for locale-dependent operations.

This confirmation environment

Reference material

Recommended Posts

Get Locale objects for all locales available in Java
Get EXIF information in Java
[Java] Get KClass in Java [Kotlin]
Rock-paper-scissors game for beginners in Java
[For beginners] Run Selenium in Java
Get Null-safe Map values in Java
Deleting AWS S3 Objects in Java
[Java] Reflash all items in BeanClass
Get stuck in a Java primer
Settings for SSL debugging in Java
Get the result of POST in Java
First steps for deep learning in Java
Key points for introducing gRPC in Java
[Java] for Each and sorted in Lambda
All same hash code string in Java
How to get the date in java
Get history from Zabbix server in Java
ChatWork4j for using the ChatWork API in Java
Technology for reading Java source code in Eclipse
Solution for NetBeans 8.2 not working in Java 9 environment
How to get Class from Element in Java
Get unixtime (seconds) from ZonedDateTime in Scala / Java
Kantai Collection Java # 1 Classes and Objects [For Beginners]
Library "OSHI" to get system information in Java
Set pop-up display for Java language in vim.
Compare PDF output in Java for snapshot testing
[Java] Get KFunction from Method / Constructor in Java [Kotlin]
Enable / disable SNI in Java for each communication
Things to watch out for in Java equals
Get along with Java containers in Cloud Run