Skip to Content

🇭🇺Hungary Subdivisions

All 43 Hungary subdivisions with ISO 3166-2:HU codes - Europe / Eastern Europe

Total

43 subdivisions

Types

Capital city, City of county right, County

ISO Standard

ISO 3166-2:HU

Code Example

import { subdivision } from '@koshmoney/countries';

// Get all Hungary subdivisions
const subs = subdivision.getByCountry('HU');
// => 43 subdivisions

// Look up a specific subdivision
subdivision.get('HU-BA');
// => { code: 'HU-BA', name: 'Baranya', type: 'County' }

// Validate a subdivision code
subdivision.isValidCode('HU-BA');  // true
subdivision.isValidRegion('HU', 'BA');  // true

Tree-Shaking Tip

Import only Hungary subdivisions to minimize bundle size:

// Import only Hungary subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/HU';

Object.entries(subdivisions);
// => 43 entries

All Hungary Subdivisions

Capital citys (1)

CodeName
HU-BUBudapest

City of county rights (23)

CodeName
HU-BCBékéscsaba
HU-DEDebrecen
HU-DUDunaújváros
HU-EGEger
HU-ERÉrd
HU-GYGyőr
HU-HVHódmezővásárhely
HU-KMKecskemét
HU-KVKaposvár
HU-MIMiskolc
HU-NKNagykanizsa
HU-NYNyíregyháza
HU-PSPécs
HU-SDSzeged
HU-SFSzékesfehérvár
HU-SHSzombathely
HU-SKSzolnok
HU-SNSopron
HU-SSSzekszárd
HU-STSalgótarján
HU-TBTatabánya
HU-VMVeszprém
HU-ZEZalaegerszeg

Countys (19)

CodeName
HU-BABaranya
HU-BEBékés
HU-BKBács-Kiskun
HU-BZBorsod-Abaúj-Zemplén
HU-CSCsongrád
HU-FEFejér
HU-GSGyőr-Moson-Sopron
HU-HBHajdú-Bihar
HU-HEHeves
HU-JNJász-Nagykun-Szolnok
HU-KEKomárom-Esztergom
HU-NONógrád
HU-PEPest
HU-SOSomogy
HU-SZSzabolcs-Szatmár-Bereg
HU-TOTolna
HU-VAVas
HU-VEVeszprém
HU-ZAZala

FAQ

How many subdivisions does Hungary have?
Hungary has 43 subdivisions defined in ISO 3166-2:HU, including 1 capital citys, 23 city of county rights, 19 countys.
What is the ISO 3166-2 code format for Hungary?
Hungary subdivision codes follow the format HU-XX, where HU is the country's alpha-2 code and XX is the subdivision identifier. For example, HU-BA represents Baranya.
How to get Hungary subdivisions in JavaScript?
Install @koshmoney/countries via npm, then use subdivision.getByCountry('HU') to get all 43 subdivisions.
View Hungary country page →Country code converter →

Use Hungary subdivision data in your project

Get all 43 Hungary subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.

npm install @koshmoney/countries