🇧🇪Belgium Subdivisions
All 13 Belgium subdivisions with ISO 3166-2:BE codes - Europe / Western Europe
Total
13 subdivisions
Types
Province, Region
ISO Standard
ISO 3166-2:BE
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Belgium subdivisions
const subs = subdivision.getByCountry('BE');
// => 13 subdivisions
// Look up a specific subdivision
subdivision.get('BE-BRU');
// => { code: 'BE-BRU', name: 'Brussels Hoofdstedelijk Gewest', type: 'Region' }
// Validate a subdivision code
subdivision.isValidCode('BE-BRU'); // true
subdivision.isValidRegion('BE', 'BRU'); // trueTree-Shaking Tip
Import only Belgium subdivisions to minimize bundle size:
// Import only Belgium subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/BE';
Object.entries(subdivisions);
// => 13 entriesAll Belgium Subdivisions
Provinces (10)
| Code | Name |
|---|---|
| BE-VAN | Antwerpen |
| BE-VBR | Vlaams-Brabant |
| BE-VLI | Limburg |
| BE-VOV | Oost-Vlaanderen |
| BE-VWV | West-Vlaanderen |
| BE-WBR | Brabant wallon |
| BE-WHT | Hainaut |
| BE-WLG | Liège |
| BE-WLX | Luxembourg |
| BE-WNA | Namur |
Regions (3)
| Code | Name |
|---|---|
| BE-BRU | Brussels Hoofdstedelijk Gewest |
| BE-VLG | Vlaams Gewest |
| BE-WAL | wallonne, Région |
FAQ
- How many subdivisions does Belgium have?
- Belgium has 13 subdivisions defined in ISO 3166-2:BE, including 10 provinces, 3 regions.
- What is the ISO 3166-2 code format for Belgium?
- Belgium subdivision codes follow the format BE-XX, where BE is the country's alpha-2 code and XX is the subdivision identifier. For example, BE-BRU represents Brussels Hoofdstedelijk Gewest.
- How to get Belgium subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('BE')to get all 13 subdivisions.
Use Belgium subdivision data in your project
Get all 13 Belgium subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries