Reference
What Is a Julian Date?
“Julian date” means two genuinely different things depending on who is using it. This page explains both clearly — so you can tell which one you have and convert it with confidence.
The short answer
In industry and IT, a Julian date is the year plus the day of the year — for example 2026202 means 2026, day 202.
In astronomy, the Julian Date is a continuous count of days since 4713 BC — right now about 2,461,242.
They share a name by historical accident and are otherwise unrelated.
1. The day-of-year "Julian date" (manufacturing & IT)
This is the one most people mean when they type “today's Julian date”. It is simply the ordinal day of the year — a number from 1 to 365 (or 366 in a leap year) — usually written with the year in front. The most common layouts are:
| Format | Example (Tuesday, July 21, 2026) | Meaning |
|---|---|---|
| YYYYDDD | 2026202 | 4-digit year + day of year |
| YYDDD | 26202 | 2-digit year + day of year |
| DDD | 202 | Day of year only |
You'll find this format on food packaging, egg cartons, military MRE cases, pharmaceutical batches, and throughout older mainframe and database systems — anywhere a compact, sortable production date is useful. It became known as a “Julian date” in the punched-card era simply because it was a convenient serial way to write a date; the name stuck even though it has nothing to do with Julius Caesar or with astronomy.
Strictly, the international standard (ISO 8601) calls this the
ordinal date and writes it YYYY-DDD. But in
everyday shop-floor and IT usage, “Julian date” is what it's called.
Convert one now with the
Julian date → calendar converter.
How to read a code like 26202
- Take the last three digits as the day of year:
202→ day 202. - Take the digits in front as the year:
26→ 2026. - Day 202 of 2026 is Tuesday, July 21, 2026.
2. The astronomical Julian Date (science)
The astronomical Julian Date (JD) is a single running tally of days that never restarts. It counts from a fixed origin — 12:00 Universal Time on 1 January 4713 BC (in the proleptic Julian calendar) — so any instant in history or the future is a single number. Today the count is in the 2,461,000s.
Its value is that intervals become trivial: to find the days between two
events, you subtract their Julian Dates. There are no months, weeks or
leap years to reconcile, which is exactly what you want when reducing
observations or propagating an orbit. Because astronomers historically
worked at night, the Julian Date rolls over at noon, not
midnight — so “now” usually has a fractional part like .5.
Several shifted versions exist for convenience. The most important is the Modified Julian Date (MJD) = JD − 2,400,000.5, which is shorter and rolls over at midnight. See the Julian Day reference and the MJD page for the full family.
Where does the name come from?
The astronomical system was proposed in 1583 by the scholar Joseph Scaliger, who defined a 7,980-year “Julian Period”. He named it after his father, Julius Caesar Scaliger — not after the Roman emperor or his calendar. The starting year, 4713 BC, is where three cycles used in calendar calculations all coincide. Astronomer John Herschel later adapted the period into the running day count astronomers use today.
The Julian calendar, by contrast, is the leap-year calendar Julius Caesar really did introduce in 45 BC. So three different things share the “Julian” label: the calendar, the astronomical day count, and the industrial day-of-year code. Keeping them straight is half the battle.
Which one do you have? A quick test
| If the number… | It's probably… |
|---|---|
| has 3–7 digits (e.g. 2026202) | the day-of-year / manufacturing Julian date |
| is around 2.4 million (e.g. 2461242) | the astronomical Julian Date |
| is around 60,000 with a decimal | a Modified Julian Date (MJD) |
| came from a product label or IT system | the day-of-year format |
| came from an observatory, satellite or ephemeris | the astronomical JD or MJD |
Convert whichever you have
- Universal Julian date converter — handles every format.
- Astronomical JD / MJD converter — with time of day.
- Printable Julian date calendars — by year.
- Glossary — every related term defined.
Frequently asked questions
What is today’s Julian date?
It depends on which "Julian date" you mean. In manufacturing and IT it is the day-of-year format — the last three digits are the day number from 001 to 365 (or 366 in a leap year), usually prefixed by the year, e.g. 2026202 or 26202. In astronomy it is the continuous Julian Date, a running count of days that today sits in the 2,461,000s. The live figures at the top of this page show both for the current moment.
Why does "Julian date" mean two different things?
They come from two unrelated traditions that ended up sharing a name. The astronomical Julian Date was defined in 1583 by Joseph Scaliger as a single continuous day count for astronomers. Separately, business and government systems began calling the ordinal "day of year" a "Julian date" because it was convenient for punch cards and mainframes. Both are in everyday use, so a good tool has to handle each.
How do I read a Julian date on a product or package?
Most packaged-goods codes use the ordinal format. A 5-digit code like 26202 breaks down as the year (26 → 2026) followed by the day of year (202 → July 21). A 4- or 3-digit code is often just the day of year for the current year. Paste the code into the converter to decode it instantly.
Is the Julian date the same as the Julian calendar?
No. The Julian calendar is the old solar calendar introduced by Julius Caesar in 45 BC and replaced by the Gregorian calendar from 1582. The astronomical Julian Date is a day count that is only named after that calendar because its starting epoch is defined in it. The ordinal "day of year" Julian date has nothing to do with Julius Caesar at all.
What is the Modified Julian Date (MJD)?
The Modified Julian Date is the astronomical Julian Date minus 2,400,000.5. The half-day shift makes the MJD roll over at midnight instead of noon, and the smaller number is easier to store. It is widely used in satellite tracking, geodesy and computing.
Does the Julian date change at midnight or noon?
The ordinal day-of-year Julian date changes at local midnight, like any calendar date. The astronomical Julian Date, by definition, increments by a whole number at 12:00 noon Universal Time — which is why "now" almost always has a .5-ish fractional part rather than a round number.