Cédula de Identidad generator (Nicaragua)
A Nicaraguan cédula is formatted 000-000000-0000A — a municipality code, the date of birth, a serial, and a final letter whose algorithm is not officially published. These test values are synthetic and format-valid.
Synthetic · not collision-guaranteed Validate a number →
386-010798-9683G
Synthetic cédula (format-valid). The final letter’s algorithm is not officially published.
Format specification
| Identifier | Cédula de Identidad |
|---|---|
| Country | 🇳🇮 Nicaragua |
| Format | 000-000000-0000A |
| Length | 14 characters |
| Checksum | None |
| Example | 437-091210-3784R |
| Safe strategy | Synthetic |
| Data quality | Best-effort |
Cédula de Identidad: what each part means
| 000 | Municipality where the birth was registered. |
|---|---|
| 000000 | Date of birth as DDMMYY. |
| 0000 | Four-digit serial number. |
| A | Final letter (derivation not officially published; test values use a random letter). |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^\d{13}[A-Y]$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Cédula de Identidad values (000-000000-0000A) 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.