IDNP generator (Moldova)
A Moldovan IDNP is thirteen digits starting with 2, ending in a check digit computed with repeating 7,3,1 weights mod 10. These test values are synthetic but checksum-valid.
Synthetic · not collision-guaranteed Validate a number →
2605992674941
Synthetic IDNP with a valid check digit. Not a real issued number.
Format specification
| Identifier | Identification Number of the Person (IDNP) |
|---|---|
| Country | 🇲🇩 Moldova |
| Format | 0000000000000 |
| Length | 13 characters |
| Checksum | MOD 10 (7,3,1) |
| Example | 2729136335393 |
| Safe strategy | Synthetic |
| Data quality | Verified against sources |
Identification Number of the Person: what each part means
| 0 | Constant 2 — marks a natural person (organisations use other prefixes, e.g. IDNO). |
|---|---|
| 00000000000 | Eleven digits assigned by the state register; no personal data is encoded. |
| 0 | Check digit: the first twelve digits weighted 7,3,1 repeating, summed mod 10. |
Validation regex
Matches the canonical value — strip separators and uppercase first: value.replace(/[^A-Za-z0-9]/g, '').toUpperCase()
^2\d{12}$ References
Common questions
Will these pass my validation?
Yes — they are well-formed Identification Number of the Person values (0000000000000) and pass standard format checks, including the MOD 10 (7,3,1) 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.