Unix Timestamp to Date

UTC
Your local timezone

A Unix timestamp is a numerical representation of a specific point in time, defined as the number of seconds that have elapsed since January 1, 1970, at 00:00:00 UTC.

To convert a Unix timestamp to a human-readable date, you can use a variety of programming languages or online tools that provide this functionality. In most programming languages, there are built-in functions that can convert a Unix timestamp to a date. For example, in JavaScript, you can use the new Date() constructor to convert a Unix timestamp to a date, like this:

var unixTimestamp = 1609459200;
var date = new Date(unixTimestamp * 1000);
console.log(date);

This will output:

Mon Jan 17 2022 00:00:00 GMT+0000 (Coordinated Universal Time)

Similar tools

Date to Unix Timestamp

Convert a particular date to the unix timestamp format.

Popular tools