T
Timestamp Converter
Convert between Unix timestamps and human-readable dates
timestamp
date
unix
Current Time
1771760350
2/22/2026, 11:39:10 AM
UTC+00:00
Sun, 22 Feb 2026 11:39:10 GMT
UTC+00:00
0h from UTC
Unix Timestamp
Date & Time
Code Examples
// Convert timestamp to date
const timestamp = 1771760350;
const date = new Date(timestamp * 1000);
console.log(date.toISOString());
// Output: 2026-02-22T11:39:10.000Z
// Convert date to timestamp
const now = new Date();
const timestamp = Math.floor(now.getTime() / 1000);