🇸🇪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'); // trueTree-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 entriesAll Sweden Countys
| Code | Name | Type |
|---|---|---|
| SE-AB | Stockholms län | County |
| SE-AC | Västerbottens län | County |
| SE-BD | Norrbottens län | County |
| SE-C | Uppsala län | County |
| SE-D | Södermanlands län | County |
| SE-E | Östergötlands län | County |
| SE-F | Jönköpings län | County |
| SE-G | Kronobergs län | County |
| SE-H | Kalmar län | County |
| SE-I | Gotlands län | County |
| SE-K | Blekinge län | County |
| SE-M | Skåne län | County |
| SE-N | Hallands län | County |
| SE-O | Västra Götalands län | County |
| SE-S | Värmlands län | County |
| SE-T | Örebro län | County |
| SE-U | Västmanlands län | County |
| SE-W | Dalarnas län | County |
| SE-X | Gävleborgs län | County |
| SE-Y | Västernorrlands län | County |
| SE-Z | Jämtlands län | County |
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/countriesvia npm, then usesubdivision.getByCountry('SE')to get all 21 subdivisions.
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