Unix Timestamp Converter

Convert between Unix epoch time and human-readable dates.

Current timestamp

Timestamp → Date

Date → Timestamp

Frequently asked questions

Is the timestamp in seconds or milliseconds?

This tool expects and outputs Unix time in seconds, the traditional standard — JavaScript's own Date.now() returns milliseconds, so divide by 1000 if converting from that.

Does this account for time zones?

The converted date/time is shown in UTC — convert to your local zone separately if needed, since Unix timestamps themselves are timezone-agnostic.

Related tools