Cédula de Identidad generator (Ecuador)
An Ecuadorian cédula is ten digits — a province code, a type digit, a serial, and a MOD-10 check digit. These test values are synthetic but checksum-valid.
Synthetic · not collision-guaranteed Validate a number →
1605992674
Synthetic cédula with a valid check digit. Not a real issued number.
Format specification
| Identifier | Cédula de Identidad |
|---|---|
| Country | 🇪🇨 Ecuador |
| Format | 0000000000 |
| Length | 10 characters |
| Checksum | MOD 10 (2,1 weights) |
| Example | 1819136332 |
| Safe strategy | Synthetic |
| Data quality | Verified against sources |
Cédula de Identidad: what each part means
| 00 | Province of registration, 01–24 (30 for Ecuadorians registered abroad). |
|---|---|
| 0 | Third digit 0–5 marks a natural person (6 and 9 are used for tax IDs of entities). |
| 000000 | Six-digit serial number. |
| 0 | Check digit: the first nine digits weighted 2,1,2,1…, products above 9 reduced by 9, then (10 − sum mod 10) mod 10. |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^\d{10}$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Cédula de Identidad values (0000000000) and pass standard format checks, including the MOD 10 (2,1 weights) 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.