How do you read a 5 digit date code?
Mia Horton
Updated on January 13, 2026
The Julian date format is a five digit number broken into two parts: a two-digit representation of the year followed by a three-digit representation of the day of the year. For example, January 1st, 1999 is 99001 in Julian format.
Julian date
The Julian day number (JDN) is the integer assigned to a whole solar day in the Julian day count starting from noon Universal Time, with Julian day number 0 assigned to the day starting at noon on Monday, January 1, 4713 BC, proleptic Julian calendar (November 24, 4714 BC, in the proleptic Gregorian calendar), a date ...
› wiki › Julian_day
How do you read the 5 digit expiration date?
For canned food and ready-to-eat meals, check the packaging for a 5-digit code that signifies when the food was manufactured. In this code, the first 2 numbers stand for the year, while the last 3 represent the day of the year.How do you read this date code?
Match an all-numerical code with a "month, day, year" sequence.
- For example, "121518" would be read as December 15, 2018.
- Certain brands use a year-month-day sequence, where December 15, 2018, would be written as "181215".
How do you read a Julian date code?
The first two digits are the last numbers of the year and the three digits after the hyphen are the day of that year. So, for instance, a Julian date of 21-001 represents the first day of the year 2021, or January 1, 2021, while a Julian date of 22-165 represents the 165th day of the year 2022 or June 14, 2022.How many digits are in a Julian date?
Julian Dates. Many applications (especially mainframe systems) store dates in the Julian format, which is a 5 digit number, consisting of a 2 digit year and a 3 digit day-of-year number. For example, 24-August-1999 is stored as 99236, since 24-August is the 236th day of the year.How to Read Tecumseh 4-digit and 5-digit Engine Date Codes
What is today's 5 digit Julian date?
Tools: Julian Date ConverterToday's date is 17-Jun-2022 (UTC). Today's Julian Date is 22168 .
How do I convert a 5 digit Julian date to a normal date in Excel?
In a blank cell, type this formula =TEXT(A1,"yy")&TEXT((A1-DATEVALUE("1/1/"&TEXT(A1,"yy"))+1),"000") and press Enter key, if you need you can apply this formula to a range by dragging the auto fill handle. Tip: A1 is the calendar date you want to convert to Julian date.What is Julian date format?
A Julian date is sometimes used to refer to a date format that is a combination of the current year and the number of days since the beginning of the year. For example, January 1, 2007 is represented as 2007001 and December 31, 2007 is represented as 2007365.How do you convert a Julian date to a regular date?
For example:-
- Enter the formula in cell B2.
- =("1/1/"&(IF(LEFT(A2,2)*1<20,2000,1900)+LEFT(A2,2)))+MOD(A2,1000)-1.
- Press Enter.
- The function will convert the Julian date format in to Calendar date.