DNI generator (Honduras)
A Honduran DNI is thirteen digits formatted 0000-0000-00000 — the municipality of birth registration, the year of birth, and a five-digit serial. There is no public checksum. These test values are synthetic.
Synthetic · not collision-guaranteed Validate a number →
1201-1979-98105
Synthetic DNI (format-valid; no public checksum). Not a real issued number.
Format specification
| Identifier | Documento Nacional de Identificación (DNI) |
|---|---|
| Country | 🇭🇳 Honduras |
| Format | 0000-0000-00000 |
| Length | 13 characters |
| Checksum | None |
| Example | 1309-2003-10176 |
| Safe strategy | Synthetic |
| Data quality | Best-effort |
Documento Nacional de Identificación: what each part means
| 0000 | Municipality of birth registration (two digits department + two digits municipality). |
|---|---|
| 0000 | Four-digit year of birth. |
| 00000 | Five-digit serial number. |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^\d{13}$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Documento Nacional de Identificación values (0000-0000-00000) and pass standard format checks.
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.