Skip to Content

🇸🇪Sweden Countys

All 21 Sweden subdivisions with ISO 3166-2:SE codes - Europe / Northern Europe

Total

21 subdivisions

Types

County

ISO Standard

ISO 3166-2:SE

Code Example

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

// Get all Sweden subdivisions
const subs = subdivision.getByCountry('SE');
// => 21 subdivisions

// Look up a specific subdivision
subdivision.get('SE-AB');
// => { code: 'SE-AB', name: 'Stockholms län', type: 'County' }

// Validate a subdivision code
subdivision.isValidCode('SE-AB');  // true
subdivision.isValidRegion('SE', 'AB');  // true

Tree-Shaking Tip

Import only Sweden subdivisions to minimize bundle size:

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

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

All Sweden Countys

CodeNameType
SE-ABStockholms länCounty
SE-ACVästerbottens länCounty
SE-BDNorrbottens länCounty
SE-CUppsala länCounty
SE-DSödermanlands länCounty
SE-EÖstergötlands länCounty
SE-FJönköpings länCounty
SE-GKronobergs länCounty
SE-HKalmar länCounty
SE-IGotlands länCounty
SE-KBlekinge länCounty
SE-MSkåne länCounty
SE-NHallands länCounty
SE-OVästra Götalands länCounty
SE-SVärmlands länCounty
SE-TÖrebro länCounty
SE-UVästmanlands länCounty
SE-WDalarnas länCounty
SE-XGävleborgs länCounty
SE-YVästernorrlands länCounty
SE-ZJämtlands länCounty

FAQ

How many subdivisions does Sweden have?
Sweden has 21 subdivisions defined in ISO 3166-2:SE, including 21 countys.
What is the ISO 3166-2 code format for Sweden?
Sweden subdivision codes follow the format SE-XX, where SE is the country's alpha-2 code and XX is the subdivision identifier. For example, SE-AB represents Stockholms län.
How to get Sweden subdivisions in JavaScript?
Install @koshmoney/countries via npm, then use subdivision.getByCountry('SE') to get all 21 subdivisions.
View Sweden country page →Country code converter →

Use Sweden subdivision data in your project

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

npm install @koshmoney/countries