Emirates ID Number generator (United Arab Emirates)
A UAE Emirates ID is fifteen digits formatted 784-YYYY-NNNNNNN-C: the fixed prefix 784, the year of birth, a seven-digit serial, and a Luhn check digit. These test values are synthetic but Luhn-valid.
Synthetic · not collision-guaranteed Validate a number →
784-1988-0599267-8
Synthetic Emirates ID (Luhn-valid). Not a real issued number.
Format specification
| Identifier | Emirates ID Number |
|---|---|
| Country | 🇦🇪 United Arab Emirates |
| Format | 784-0000-0000000-0 |
| Length | 15 characters |
| Checksum | Luhn |
| Example | 784-1993-2913633-9 |
| Safe strategy | Synthetic |
| Data quality | Best-effort |
Emirates ID Number: what each part means
| 784 | The ISO 3166 numeric country code for the United Arab Emirates — every Emirates ID starts with it. |
|---|---|
| 0000 | Year of birth. |
| 0000000 | Seven-digit serial number. |
| 0 | Luhn (mod 10) check digit over the first fourteen digits. |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^784\d{12}$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Emirates ID Number values (784-0000-0000000-0) and pass standard format checks, including the Luhn checksum.
Could one belong to a real person?
These are synthetic values. They are format-valid but not drawn from a guaranteed reserved range, so use them only for testing.
Can I generate many at once?
Increase the count, or use the free API and CSV/JSON export for large datasets.
For software testing only. These numbers are synthetic and must never be used
for real-world identification, applications, or to impersonate anyone.