Timestamp Converter

Convert Unix timestamps to readable dates and dates back to Unix timestamps.

Timestamp Converter

Convert Unix timestamps to readable dates and dates back to Unix timestamps.

Supports seconds, milliseconds, microseconds, and nanoseconds.
?

How it works

  1. Enter a Unix timestamp to get a date and time.
  2. Enter a date and timezone to get a Unix timestamp.
  3. Copy the format you need instantly.

1. Timestamp → Date

10 digits (s)13 digits (ms)16 digits (μs)19 digits (ns)

Your local timeEnter a timestamp to convert it.

2. Date → Timestamp

Unix Timestamp Formats

Seconds (s)
Milliseconds (ms)
Microseconds (μs)
Nanoseconds (ns)
?

What is a Unix Timestamp?

A Unix timestamp is the number of seconds elapsed since January 1, 1970 at 00:00:00 UTC. It is widely used in programming, databases, APIs, and operating systems.

Practical guide

Using Timestamp Converter with confidence

Reviewed by LipiCode Editorial Team

What this tool helps you do

Unix timestamps represent an instant relative to the Unix epoch. The same instant can be displayed differently across time zones, and systems may store seconds, milliseconds, microseconds, or nanoseconds.

When it is useful

  • Reading API event times
  • Converting log timestamps
  • Checking expiry claims
  • Creating an epoch value from a date

A practical example

A 13-digit contemporary timestamp is commonly milliseconds. Treating it as seconds produces a date far outside the expected range, so confirm precision before interpreting the value.

Limitations and common mistakes

A timestamp alone may not preserve the user's named time zone or daylight-saving rule. Avoid assuming local time, check negative pre-1970 values, and retain precision only as far as the receiving system supports it.

Frequently asked questions

Why are there 10- and 13-digit timestamps?

Ten digits commonly represent seconds and thirteen commonly represent milliseconds.

Does Unix time include a time zone?

It identifies an instant; a time zone is applied when that instant is displayed.

Read the related in-depth guide