🇶🇦Qatar Municipalitys
All 7 Qatar subdivisions with ISO 3166-2:QA codes - Asia / Western Asia
Total
7 subdivisions
Types
Municipality
ISO Standard
ISO 3166-2:QA
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Qatar subdivisions
const subs = subdivision.getByCountry('QA');
// => 7 subdivisions
// Look up a specific subdivision
subdivision.get('QA-DA');
// => { code: 'QA-DA', name: 'Ad Dawḩah', type: 'Municipality' }
// Validate a subdivision code
subdivision.isValidCode('QA-DA'); // true
subdivision.isValidRegion('QA', 'DA'); // trueTree-Shaking Tip
Import only Qatar subdivisions to minimize bundle size:
// Import only Qatar subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/QA';
Object.entries(subdivisions);
// => 7 entriesAll Qatar Municipalitys
| Code | Name | Type |
|---|---|---|
| QA-DA | Ad Dawḩah | Municipality |
| QA-KH | Al Khawr wa adh Dhakhīrah | Municipality |
| QA-MS | Ash Shamāl | Municipality |
| QA-RA | Ar Rayyān | Municipality |
| QA-US | Umm Şalāl | Municipality |
| QA-WA | Al Wakrah | Municipality |
| QA-ZA | Az̧ Z̧a‘āyin | Municipality |
FAQ
- How many subdivisions does Qatar have?
- Qatar has 7 subdivisions defined in ISO 3166-2:QA, including 7 municipalitys.
- What is the ISO 3166-2 code format for Qatar?
- Qatar subdivision codes follow the format QA-XX, where QA is the country's alpha-2 code and XX is the subdivision identifier. For example, QA-DA represents Ad Dawḩah.
- How to get Qatar subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('QA')to get all 7 subdivisions.
Use Qatar subdivision data in your project
Get all 7 Qatar subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries