T
Timestamp Converter
Convert between Unix timestamps and human-readable dates
timestamp
date
unix
Current Time
1751779656
7/6/2025, 5:27:36 AM
UTC+00:00
Sun, 06 Jul 2025 05:27:36 GMT
UTC+00:00
0h from UTC
Unix Timestamp
Date & Time
Code Examples
// Convert timestamp to date
const timestamp = 1751779656;
const date = new Date(timestamp * 1000);
console.log(date.toISOString());
// Output: 2025-07-06T05:27:36.000Z
// Convert date to timestamp
const now = new Date();
const timestamp = Math.floor(now.getTime() / 1000);