Input

Output

Formatted result will be displayed here

What does epoch to date mean?

Converting epoch to a date breaks the raw second count into the year, month, day, hour, minute, and second a person would put on a calendar. It is the operation you perform any time a backend hands you a number and a human needs to know what day or week it represents. This tool emphasizes the calendar-side output: clear year, month, day, day-of-week, and day-of-year fields in addition to the raw time.

Use Cases

Pick the day a record was created

A support ticket referencing an epoch needs to become a real date before you can correlate it with the customer calendar.

Determine the week of a build

Release scripts sometimes tag artifacts with an epoch. Convert to check which sprint week the build belongs to.

Audit retention policies

Policies specify retention in days. Turn an epoch mtime into a date to see whether a file is due for deletion.

Prepare reporting CSVs

Analytics exports arrive with epoch columns. Convert to get year and month fields your reporting tool can pivot on.

FAQ

Which calendar does the tool use?

The proleptic Gregorian calendar, which is what every modern system uses when handling dates after 1582.

How is day of week computed?

From the epoch value using Zeller-style arithmetic in the browser. It matches what date does on Linux for the same input.

Do I get ISO week numbers?

Yes. ISO 8601 week number and year are shown alongside the regular calendar fields so planning tools stay consistent.

Is daylight saving handled?

The UTC view is DST-free by definition. The local view applies whatever DST rule your browser zone has in effect at that moment.