Convert a Unix timestamp back into a readable date and time.
The timestamp is divided into days and a remainder, which is broken into hours, minutes and seconds and written out as a date. Reading raw timestamps helps debug logs and APIs where moments are stored as plain seconds.
Unix to Date
Days = floor(timestamp / 86400); remainder splits into hour, minute and second
Days = floor(timestamp / 86400); remainder splits into hour, minute and second The timestamp is divided into days and a remainder, which is broken into hours, minutes and seconds and written out as a date.
Reading raw timestamps helps debug logs and APIs where moments are stored as plain seconds.
This calculator takes 1 input: Unix seconds. The pre-filled defaults are a realistic starting point — replace them with figures from your own environment for a result you can act on.