🇳🇴Norway Subdivisions
All 21 Norway subdivisions with ISO 3166-2:NO codes - Europe / Northern Europe
Total
21 subdivisions
Types
Arctic region, County
ISO Standard
ISO 3166-2:NO
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Norway subdivisions
const subs = subdivision.getByCountry('NO');
// => 21 subdivisions
// Look up a specific subdivision
subdivision.get('NO-01');
// => { code: 'NO-01', name: 'Østfold', type: 'County' }
// Validate a subdivision code
subdivision.isValidCode('NO-01'); // true
subdivision.isValidRegion('NO', '01'); // trueTree-Shaking Tip
Import only Norway subdivisions to minimize bundle size:
// Import only Norway subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/NO';
Object.entries(subdivisions);
// => 21 entriesAll Norway Subdivisions
Arctic regions (2)
| Code | Name |
|---|---|
| NO-21 | Svalbard |
| NO-22 | Jan Mayen |
Countys (19)
| Code | Name |
|---|---|
| NO-01 | Østfold |
| NO-02 | Akershus |
| NO-03 | Oslo |
| NO-04 | Hedmark |
| NO-05 | Oppland |
| NO-06 | Buskerud |
| NO-07 | Vestfold |
| NO-08 | Telemark |
| NO-09 | Aust-Agder |
| NO-10 | Vest-Agder |
| NO-11 | Rogaland |
| NO-12 | Hordaland |
| NO-14 | Sogn og Fjordane |
| NO-15 | Møre og Romsdal |
| NO-16 | Sør-Trøndelag |
| NO-17 | Nord-Trøndelag |
| NO-18 | Nordland |
| NO-19 | Romsa |
| NO-20 | Finnmark |
FAQ
- How many subdivisions does Norway have?
- Norway has 21 subdivisions defined in ISO 3166-2:NO, including 2 arctic regions, 19 countys.
- What is the ISO 3166-2 code format for Norway?
- Norway subdivision codes follow the format NO-XX, where NO is the country's alpha-2 code and XX is the subdivision identifier. For example, NO-01 represents Østfold.
- How to get Norway subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('NO')to get all 21 subdivisions.
Use Norway subdivision data in your project
Get all 21 Norway subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries