Japanese era dates: converting Reiwa, Heisei, and Shōwa to Western years
How the Japanese era (元号) calendar works, why the conversion isn't a fixed offset, the transition-year edge cases, and where era dates still show up in official documents.
A Japanese form asks for your birth year and the options are 昭和, 平成, 令和 — not 1990. Official documents, bank forms, and government paperwork in Japan still run on the era system (元号, gengō), where years count from the start of each emperor's reign. Converting between an era year and a Western (Gregorian) year is mostly simple arithmetic, but the transition years are where it goes wrong, and that's exactly where it matters most.
How the era system works
Each era begins when a new emperor accedes and counts years from 1. The recent eras:
- 令和 (Reiwa) — began 2019. Reiwa 1 = 2019.
- 平成 (Heisei) — 1989 to 2019. Heisei 1 = 1989.
- 昭和 (Shōwa) — 1926 to 1989. Shōwa 1 = 1926.
The first year of an era is written 元年 (gannen, "origin year") rather than "1 年" — so 2019 is Reiwa gannen, not Reiwa 1 nen in formal writing, though they mean the same year.
The conversion, and why it's not a fixed offset
Within a single era the conversion is addition:
- Reiwa → Western: year + 2018 (Reiwa 6 = 2024)
- Heisei → Western: year + 1988 (Heisei 31 = 2019)
- Shōwa → Western: year + 1925 (Shōwa 64 = 1989)
But notice the offsets differ per era, so there's no single formula — you need to know which era you're in first. And because each era starts mid-year, the boundary years overlap, which is the real trap.
Transition years overlap
An era doesn't switch on January 1. It switches on the day the reign changes, so the transition year belongs to two eras:
- 2019 is both Heisei 31 (January 1 – April 30) and Reiwa 1 (May 1 – December 31). The same Western year maps to different era years depending on the month.
- 1989 is both Shōwa 64 (January 1 – January 7) and Heisei 1 (January 8 onward). Shōwa 64 lasted only a week.
So "convert 2019 to an era" has no single answer without the month and day. A converter that ignores the date will be wrong for anyone born in the early part of a transition year — and those people exist in every dataset. This is the one case you can't shortcut.
Where era dates still appear
It's tempting to treat the era system as ceremonial, but it's load- bearing in daily Japanese life:
- Government and municipal forms, tax documents, and official certificates.
- Bank and insurance paperwork.
- Driver's licenses and many ID documents.
- Newspapers and formal correspondence often use it alongside or instead of the Western year.
If you're building anything that ingests Japanese forms or displays dates to a Japanese audience, you'll need the conversion — and you'll need it to handle the transition years correctly.
Practical notes
- Reiwa 6 is 2024; to go the other way, Western − 2018 = Reiwa year, but only for dates from May 2019 on.
- Don't hard-code "the current era." Eras change, as Reiwa's 2019 start reminded every system that had assumed Heisei was permanent — a software scramble at the time.
- Pair era handling with the rest of your date logic, since the underlying instant is still an ordinary Gregorian date once converted.
To convert a specific era year to Western or back with the transition months handled, our Japanese era converter does it in the browser. If your data also involves the lunar calendar — common for traditional dates and birthdays — the lunar–solar converter covers that separate conversion.