Epoch & Unix Timestamp Conversion Tools

The Current Epoch Unix Timestamp

1710479466
Seconds since Jan 01 1970. (UTC)
Supports Unix timestamps in seconds, milliseconds, microseconds and nanoseconds.

Enter a Date & Time

TimeTime Format
03/15/2024 @ 05:11amUTC
2024-03-15T05:11:06+00:00ATOM
Friday, 15-Mar-2024 05:11:06 GMTCOOKIE
2024-03-15T05:11:06+0000ISO8601
Fri, 15 Mar 24 05:11:06 +0000RFC822
Friday, 15-Mar-24 05:11:06 GMTRFC850
Fri, 15 Mar 24 05:11:06 +0000RFC1036
Fri, 15 Mar 2024 05:11:06 +0000RFC1123
Fri, 15 Mar 2024 05:11:06 GMTRFC7231
Fri, 15 Mar 2024 05:11:06 +0000RFC2822
2024-03-15T05:11:06+00:00RFC3339
2024-03-15T05:11:06.000+00:00RFC3339_EXTENDED
Fri, 15 Mar 2024 05:11:06 +0000RSS
2024-03-15T05:11:06+00:00W3C

What is the unix time stamp?

Unix time (also known as Epoch time, POSIX time,seconds since the Epoch,or UNIX Epoch time) 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 TimeSeconds
1 Hour3600 Seconds
1 Day86400 Seconds
1 Week604800 Seconds
1 Month (30.44 days)2629743 Seconds
1 Year (365.24 days)31556926 Seconds

What happens on January 19, 2038?

The Year 2038 problem (also called Y2038, Epochalypse, Y2k38, or Unix Y2K) relates to representing time in many digital systems as the number of seconds passed since 00:00:00 UTC on 1 January 1970 and storing it as a signed 32-bit integer. Such implementations cannot encode times after 03:14:07 UTC on 19 January 2038. Similar to the Y2K problem, the Year 2038 problem is caused by insufficient capacity used to represent time.

The latest time since 1 January 1970 that can be stored using a signed 32-bit integer is 03:14:07 on Tuesday, 19 January 2038 (231-1 = 2,147,483,647 seconds after 1 January 1970). Programs that attempt to increment the time beyond this date will cause the value to be stored internally as a negative number, which these systems will interpret as having occurred at 20:45:52 on Friday, 13 December 1901 (2,147,483,648 seconds before 1 January 1970) rather than 19 January 2038. This is caused by integer overflow, during which the counter runs out of usable digit bits, and flips the sign bit instead. This reports a maximally negative number, and continues to count up, towards zero, and then up through the positive integers again. Resulting erroneous calculations on such systems are likely to cause problems for users and other reliant parties.