Unix timestamp converter
timestamp => datetime ( Format: year-month-day hour:minute:second )
datetime => timestamp
Multiple unix timestamp converter
multiple timestamp => datetime (one per line)
multiple datetime => to timestamp (one per line)
What is unix epoch time?
Unix epoch time (also known as Unix time, Unix timestamp, POSIX time, seconds since the epoch) is a system for describing a point in time.
It is the number of seconds that have elapsed since the unix epoch, minus leap seconds; the unix epoch is 00:00:00 UTC on 1 January 1970 (an arbitrary date); leap seconds are ignored,with a leap second having the same unix time as the second before it, and every day is treated as if it contains exactly 86400 seconds. due to this treatment unix time is not a true representation of UTC.
Human Readable Time | Seconds |
---|---|
1 Minute | 60 Seconds |
1 Hour | 3600 Seconds |
1 Day | 86400 Seconds |
1 Week | 604800 Seconds |
1 Year (365 Day) | 31536000 Seconds |