Developer tool
Unix timestamp converter
Convert Unix seconds, milliseconds, ISO 8601 and local date strings. The parser calls out seconds-vs-milliseconds so log timestamps do not silently drift by decades.
Detected: Unix seconds
Common implementation snippets
JavaScript
new Date(1767225600 * 1000).toISOString()Python
datetime.fromtimestamp(1767225600, tz=timezone.utc)Go
time.Unix(1767225600, 0).UTC()PostgreSQL
to_timestamp(1767225600) AT TIME ZONE 'UTC'