🇲🇲Myanmar Subdivisions
All 15 Myanmar subdivisions with ISO 3166-2:MM codes - Asia / South-eastern Asia
Total
15 subdivisions
Types
Region, State, Union territory
ISO Standard
ISO 3166-2:MM
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Myanmar subdivisions
const subs = subdivision.getByCountry('MM');
// => 15 subdivisions
// Look up a specific subdivision
subdivision.get('MM-01');
// => { code: 'MM-01', name: 'Sagaing', type: 'Region' }
// Validate a subdivision code
subdivision.isValidCode('MM-01'); // true
subdivision.isValidRegion('MM', '01'); // trueTree-Shaking Tip
Import only Myanmar subdivisions to minimize bundle size:
// Import only Myanmar subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/MM';
Object.entries(subdivisions);
// => 15 entriesAll Myanmar Subdivisions
Regions (7)
| Code | Name |
|---|---|
| MM-01 | Sagaing |
| MM-02 | Bago |
| MM-03 | Magway |
| MM-04 | Mandalay |
| MM-05 | Taninthayi |
| MM-06 | Yangon |
| MM-07 | Ayeyawady |
States (7)
| Code | Name |
|---|---|
| MM-11 | Kachin |
| MM-12 | Kayah |
| MM-13 | Kayin |
| MM-14 | Chin |
| MM-15 | Mon |
| MM-16 | Rakhine |
| MM-17 | Shan |
Union territorys (1)
| Code | Name |
|---|---|
| MM-18 | Nay Pyi Taw |
FAQ
- How many subdivisions does Myanmar have?
- Myanmar has 15 subdivisions defined in ISO 3166-2:MM, including 7 regions, 7 states, 1 union territorys.
- What is the ISO 3166-2 code format for Myanmar?
- Myanmar subdivision codes follow the format MM-XX, where MM is the country's alpha-2 code and XX is the subdivision identifier. For example, MM-01 represents Sagaing.
- How to get Myanmar subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('MM')to get all 15 subdivisions.
Use Myanmar subdivision data in your project
Get all 15 Myanmar subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries