Current Unix timestamp (seconds)

About the Timestamp Converter

Unix timestamps appear everywhere in software: API responses, database records, log files, and JWT tokens. This converter lets you instantly translate between a Unix timestamp and a human-readable date/time, and vice versa.

Seconds vs milliseconds

Most systems use seconds (10 digits), but JavaScript and many modern APIs use milliseconds (13 digits). Select the correct unit before converting.

Relative time

The converter also shows how long ago (or in the future) the timestamp is — useful when reading log files or API responses.

Frequently Asked Questions

What is a Unix timestamp?
Seconds elapsed since 1 January 1970 00:00:00 UTC. Used universally in programming, APIs, and databases.
Seconds or milliseconds?
10 digits = seconds. 13 digits = milliseconds. Select the right unit in the dropdown.
What is the year 2038 problem?
32-bit systems can only store timestamps up to 19 January 2038. This tool uses JavaScript 64-bit floats so handles dates far beyond that.
Developer Tools
Ad