Cédula de Identidad y Electoral generator (Dominican Republic)
A Dominican cédula is eleven digits formatted 000-0000000-0, with a Luhn (mod 10) check digit. These test values are synthetic but Luhn-valid.
Synthetic · not collision-guaranteed Validate a number →
605-9926749-3
Synthetic cédula (Luhn-valid). Not a real issued number.
Format specification
| Identifier | Cédula de Identidad y Electoral |
|---|---|
| Country | 🇩🇴 Dominican Republic |
| Format | 000-0000000-0 |
| Length | 11 characters |
| Checksum | Luhn |
| Example | 729-1363353-2 |
| Safe strategy | Synthetic |
| Data quality | Verified against sources |
Cédula de Identidad y Electoral: what each part means
| 000 | Series — historically the municipality where the first cédula was issued. |
|---|---|
| 0000000 | Seven-digit serial number. |
| 0 | Luhn (mod 10) check digit over the first ten digits. |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^\d{11}$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Cédula de Identidad y Electoral values (000-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.