The Norwegian fødselsnummer is the 11-digit national identity number assigned to residents of Norway. This decoder reads the information packed into it — date of birth, gender, individual number and the two checksum digits — entirely in your browser.
How it works
The 11 digits split into three parts: DDMMYY (date of birth), a three-digit individual number, and two control digits.
- Date of birth comes from the first six digits, with the century derived from the individual number combined with the two-digit year.
- Gender is read from the last digit of the individual number: odd = male, even = female.
- The two modulus-11 control digits are recomputed using the official weight vectors 3 7 6 1 8 9 4 5 2 (K1) and 5 4 3 2 7 6 5 4 3 2 (K2) and compared to the supplied digits.
- A D-number is detected when 40 is added to the day, and an H-number when 40 is added to the month.
Example
For an ordinary number whose date portion reads 150693 with individual number 456:
| Part | Value | Meaning |
|---|---|---|
| Day-Month-Year | 15-06-93 | 15 June 1993 |
| Individual | 456 | last digit 6 → even → female |
| Control digits | recomputed | compared for consistency |
If the day portion were 55 (15 + 40) instead, the decoder would flag it as a D-number.
It is privacy-first: nothing leaves your browser. The decoder only interprets the structure and checksum of the number — it does not check it against any register.