Skip to Content

🇪🇬Egypt Governorates

All 27 Egypt subdivisions with ISO 3166-2:EG codes - Africa / Northern Africa

Total

27 subdivisions

Types

Governorate

ISO Standard

ISO 3166-2:EG

Code Example

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

// Get all Egypt subdivisions
const subs = subdivision.getByCountry('EG');
// => 27 subdivisions

// Look up a specific subdivision
subdivision.get('EG-ALX');
// => { code: 'EG-ALX', name: 'Al Iskandarīyah', type: 'Governorate' }

// Validate a subdivision code
subdivision.isValidCode('EG-ALX');  // true
subdivision.isValidRegion('EG', 'ALX');  // true

Tree-Shaking Tip

Import only Egypt subdivisions to minimize bundle size:

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

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

All Egypt Governorates

CodeNameType
EG-ALXAl IskandarīyahGovernorate
EG-ASNAswānGovernorate
EG-ASTAsyūţGovernorate
EG-BAAl Baḩr al AḩmarGovernorate
EG-BHAl BuḩayrahGovernorate
EG-BNSBanī SuwayfGovernorate
EG-CAl QāhirahGovernorate
EG-DKAd DaqahlīyahGovernorate
EG-DTDumyāţGovernorate
EG-FYMAl FayyūmGovernorate
EG-GHAl GharbīyahGovernorate
EG-GZAl JīzahGovernorate
EG-ISAl Ismā'īlīyahGovernorate
EG-JSJanūb Sīnā'Governorate
EG-KBAl QalyūbīyahGovernorate
EG-KFSKafr ash ShaykhGovernorate
EG-KNQināGovernorate
EG-LXAl UqşurGovernorate
EG-MNAl MinyāGovernorate
EG-MNFAl MinūfīyahGovernorate
EG-MTMaţrūḩGovernorate
EG-PTSBūr Sa‘īdGovernorate
EG-SHGSūhājGovernorate
EG-SHRAsh SharqīyahGovernorate
EG-SINShamāl Sīnā'Governorate
EG-SUZAs SuwaysGovernorate
EG-WADAl Wādī al JadīdGovernorate

FAQ

How many subdivisions does Egypt have?
Egypt has 27 subdivisions defined in ISO 3166-2:EG, including 27 governorates.
What is the ISO 3166-2 code format for Egypt?
Egypt subdivision codes follow the format EG-XX, where EG is the country's alpha-2 code and XX is the subdivision identifier. For example, EG-ALX represents Al Iskandarīyah.
How to get Egypt subdivisions in JavaScript?
Install @koshmoney/countries via npm, then use subdivision.getByCountry('EG') to get all 27 subdivisions.
View Egypt country page →Country code converter →

Use Egypt subdivision data in your project

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

npm install @koshmoney/countries