Does Dubai Have a ZIP Code? What to Enter for UAE Addresses

No. Dubai and the UAE have no postal codes. What to type when a form insists (00000), how PO Box, Makani and Onwani addresses work, and rules for checkouts.

By VincentPublished September 7, 2026Last updated September 7, 20267 min read

Illustration for this article: No. Dubai and the UAE have no postal codes. What to type when a form insists (00000), how PO Box, Makani and Onwani addresses work, and rules for checkouts.

Dubai does not have a ZIP code. Nor does Abu Dhabi, Sharjah or any other part of the United Arab Emirates. The country has never introduced postal codes. The Universal Postal Union's addressing sheet for the UAE says deliveries are made to PO Boxes only [upu-uae]. The international list of postal codes records the UAE as a country with no system at all [wiki-postal-list]. This page explains what to type when a form demands a code anyway, how a real UAE address is built, and what a checkout form should do about it.

What to enter when the form will not let you skip it

Most international checkouts were built around the United States, so the postal code field is mandatory even for countries that do not have one. There is no official answer from the UAE, because there is nothing official to enter. In practice, this is the order to try.

  1. Leave it blank. Well-built forms make the field optional once the country is set to United Arab Emirates. Choose the country first and see whether the field disappears or stops being required.
  2. Enter 00000. This is the placeholder most people use, and most forms accept it. If the field wants six digits, use 000000. Neither is a real code; the value is ignored by every courier in the country.
  3. Enter your PO Box number only if the merchant says so. A few retailers ask for it in the postal field because it is the one number a UAE address reliably has. Otherwise keep it in the address lines.
  4. Never copy a code from a 'Dubai postal code list'. Those pages invent five-digit numbers for each area. They have no source, and a made-up code that looks real is worse than a blank, because a system may try to route on it.

How a UAE address is written

The UPU's model address for the UAE is four lines: the recipient, the PO Box, the emirate, and the country [upu-uae]. That is still the form for letters. Parcels and food deliveries use a street-style address, and since 2015 Dubai has attached a 10-digit Makani number to every building entrance [gulfnews-makani]. Dubai Municipality's own published address shows both styles side by side: 'Building 20, Baniyas Road, Al Rigga Area, Deira', then 'P.O. Box 67, Dubai, United Arab Emirates', with Makani 95279 30005 and no postal code anywhere [dm-address].

ElementExample (fictional except where noted)Form field
RecipientLayla HaddadName
Building or villa and streetVilla 14, Street 12bAddress line 1
Area or communityAl Barsha 2Address line 2
Makani number (Dubai, Ajman, Fujairah, RAK, UAQ)95279 30005 (Dubai Municipality's, real)Address line 2, after the area
PO Box (letters)P.O. Box 67 (Dubai Municipality's, real)Address line 2 or company field
CityDubaiCity
EmirateDubaiState or province
Postal codenoneLeave blank, or 00000 if forced
CountryUnited Arab EmiratesCountry
Phone+971 5x xxx xxxxPhone (mandatory in practice)
The elements of a UAE address and where each belongs on a Western-style form

The emirate is doing the job a state does elsewhere. There are seven: Abu Dhabi, Dubai, Sharjah, Ajman, Umm Al Quwain, Ras Al Khaimah and Fujairah, listed on the UPU sheet under their transliterated names such as Abu Zaby and Ash Shariqah [upu-uae]. A form that offers a state dropdown for the UAE should offer those seven. A form that offers a free-text state field will get 'Dubai' typed into it twice, once as city and once as emirate, and that is correct.

Makani in five emirates, Onwani in Abu Dhabi

Makani means 'my location'. Gulf News describes it as a 10-digit number that gives the exact location of a building's entrance, launched by Dubai Municipality in 2015 and displayed on a plate at the entrance [gulfnews-makani]. The same article names it the official geographic addressing system in Dubai, Ajman, Fujairah, Ras Al Khaimah and Umm Al Quwain. It is a coordinate in disguise: the number pins an entrance, not a district, so two shops in the same building share it and two buildings on the same street never do.

Abu Dhabi went a different way. Its Onwani system, run by the Department of Municipalities and Transport, gives every building a unique number and every street a unique name. The Abu Dhabi Media Office describes it as the emirate's unified spatial addressing system [adm-onwani]. An Abu Dhabi address therefore looks more like a Western one: building number, street name, area, city. It still has no postal code.

EmirateBuilding location systemLetters
Abu DhabiOnwani: building number + street namePO Box
DubaiMakani: 10-digit entrance codePO Box
SharjahArea, street and building name or numberPO Box
AjmanMakaniPO Box
Umm Al QuwainMakaniPO Box
Ras Al KhaimahMakaniPO Box
FujairahMakaniPO Box
Addressing system by emirate (none of them uses a postal code)

Six fictional UAE addresses for testing

These follow the patterns above with invented recipients, building numbers and box numbers. Use them to check that a form accepts a UAE address without a postal code. They are not deliverable, and the Makani field is left as a placeholder on purpose, because a real 10-digit number always points at a real door.

#StyleAddress as writtenPostal code field
1PO Box letterLayla Haddad · P.O. Box 41827 · Dubai · United Arab Emiratesblank
2Dubai street + MakaniOmar Al Mansoori · Apartment 1204, Marina Crest Tower · Al Marsa Street · Dubai Marina · Dubai · Makani XXXXX XXXXXblank or 00000
3Dubai villaPriya Menon · Villa 14, Street 12b · Al Barsha 2 · Dubaiblank or 00000
4Abu Dhabi OnwaniKhalid Al Nuaimi · Building 27, Al Falah Street · Al Zahiyah · Abu Dhabiblank or 00000
5SharjahFatima Rashid · Flat 803, Al Majaz Pearl · Corniche Street · Al Majaz 3 · Sharjahblank or 00000
6Company with boxGulf Meridian Trading LLC · Office 5, Building 7, Al Maktoum Road · Al Rigga, Deira · P.O. Box 90455 · Dubaiblank or 00000
Fictional UAE addresses in the three common styles

What a checkout form should do

If you build forms, the UAE is the clearest test of whether your postal code field is tied to the country. The right behaviour is short to state and easy to check. It is the same list the Hong Kong page ends with, because the two countries share the problem.

  1. Make the postal code optional when the country is AE. Hide the field or relabel it; do not leave a required asterisk on a field the customer cannot fill.
  2. If the schema needs a value, store an empty string, not 00000. A stored 00000 will later look like data.
  3. Accept 00000 and 000000 without an error message, and do not match them against the US ZIP table. 00000 is not a US code either, so it should never resolve to a US address.
  4. Do not apply a ^[0-9]{5}$ rule to AE. There is no format to validate.
  5. Label the state field 'Emirate' and offer the seven emirates as options.
  6. Make the phone number mandatory for AE shipping addresses. It is the one field a UAE courier cannot work without.
  7. If you want Makani, add a separate 10-digit field. It is a location code, and it does not belong in the postal column.
InputExpectedRule it exercises
Country AE, postal code blankAcceptField optional for AE
Country AE, postal code 00000Accept, do not store as dataPlaceholder tolerated
Country AE, postal code 000000AcceptSix-digit placeholder
Country AE, postal code 12345Accept or warn, never routeNo format to validate against
Country AE, state 'Dubai', city 'Dubai'AcceptEmirate and city can match
Country AE, state 'Ash Shariqah'Map to SharjahUPU transliteration
Country AE, phone blankReject for shippingPhone mandatory in practice
Makani 95279 30005 in the postal fieldReject or move to address line10 digits are not a postal code
Country US, postal code 00000RejectNot a US ZIP; see the leading-zero list
Test cases for a form that accepts UAE addresses

Where this fits on the site

Fakenamely's random address generator does not cover the UAE yet, and when it does the postal code will be blank by design, as it already is for Hong Kong. The postal code formats worldwide post puts the UAE in context with the other countries that have no codes. For the opposite problem, a US code that starts with zero and keeps getting mangled, see ZIP codes that start with 0, and for the basics start with what a ZIP code is.

Method note: the claim that the UAE has no postal code system rests on the UPU addressing sheet and the international postal code list [upu-uae] [wiki-postal-list]. The Makani facts are from Gulf News [gulfnews-makani] and the Onwani facts from the Abu Dhabi Media Office [adm-onwani]. The example of an official address is from Dubai Municipality's contact page [dm-address]. All were read on 2026-09-07. The 00000 workaround has no official source; it is reported here because it is what forms accept, not because anyone issued it.

References & sources

  1. Postal addressing systems: United Arab Emirates (09/2014)Universal Postal Union
  2. List of postal codesWikipedia
  3. Makani number: What is it and why do you need it?Gulf News
  4. Onwani system supporting easier navigation across Abu DhabiAbu Dhabi Media Office
  5. Dubai Municipality Head Office, contact pageDubai Municipality

Frequently asked questions

Does Dubai have a ZIP code?+

No. Dubai has no ZIP code and no postal code. The UAE does not use a postal code system; mail goes to PO Boxes, and deliveries find buildings by the 10-digit Makani number posted at the entrance. Any website that gives you a 'Dubai postal code' has made it up.

What do I enter in the ZIP code field for a UAE address?+

Leave it blank if the form allows. If the field is mandatory, enter 00000, or 000000 if the form wants six digits. This is a widely used placeholder, not an official code, and it does not affect delivery. Put the emirate (Dubai, Abu Dhabi, Sharjah and so on) in the state or province field, the area and building in the address lines, and a UAE mobile number in the phone field.

What is the UAE ZIP code for Amazon or other online stores?+

There isn't one. For a store shipping to the UAE, the useful parts of the address are the emirate, the area, the building or villa number and your phone number. Add the Makani number if you know it. If the checkout will not proceed without a postal code, use 00000. The courier will call you; the code is never used.

Does Abu Dhabi or Sharjah have a postal code?+

No. The rule is the same in all seven emirates: Abu Dhabi, Dubai, Sharjah, Ajman, Umm Al Quwain, Ras Al Khaimah and Fujairah. Abu Dhabi uses its own Onwani system of numbered buildings and named streets; Dubai, Ajman, Fujairah, Ras Al Khaimah and Umm Al Quwain use Makani. None of them adds a postal code.

Is a PO Box number the same as a postal code?+

No, although they are easy to confuse because both are short numbers. A PO Box number identifies one rented box at one post office, and it is the delivery address for letters in the UAE. A postal code identifies an area. Dubai Municipality's own address is 'P.O. Box 67, Dubai' with no code at all. Do not paste a PO Box number into a postal code field unless the merchant tells you to.

What is a Makani number?+

A 10-digit code that marks the exact entrance of a building, written as two groups of five digits. Dubai Municipality launched it in 2015, and it is the official geographic addressing system in Dubai, Ajman, Fujairah, Ras Al Khaimah and Umm Al Quwain. The number is on a plate at the building entrance and in the Makani app. It is a location code, not a postal code, and it should go in an address line, not the ZIP field.

More on addresses and postal formats

Put this to work