Convert Unix epoch (seconds) to human-readable date and time in multiple formats including ISO 8601, RFC 3339, UTC, and your local timezone.
1757317699
1757314099
1757231299
0
const ts = 1640995200 // seconds
const date = new Date(ts * 1000)
console.log(date.toISOString()) // 2022-01-01T00:00:00.000Z
import datetime
ts = 1640995200 # seconds
print(datetime.datetime.utcfromtimestamp(ts).isoformat() + 'Z')
long ts = 1640995200L; // seconds
Instant instant = Instant.ofEpochSecond(ts);
System.out.println(instant.toString()); // 2022-01-01T00:00:00Z
ts := int64(1640995200) // seconds
t := time.Unix(ts, 0).UTC()
fmt.Println(t.Format(time.RFC3339))