Timestamp to Date Converter

Use this timestamp to date converter to turn a Unix timestamp into a human-readable date and time. Paste a 10-digit timestamp (seconds) or 13-digit (milliseconds) below.

Timestamp Converter

--
--
--
--
--

Convert seconds to human time

--
--

How to Convert Timestamp to Date

To convert a timestamp to date: take your Unix timestamp (seconds since Jan 1, 1970 UTC), multiply by 1000 to get milliseconds, and pass it to your programming language's date function. This tool does it for you instantly.

Timestamp to Date Examples

TimestampDate (UTC)
17000000002023-11-14 22:13:20
16000000002020-09-13 12:26:40
15000000002017-07-14 02:40:00

Timestamp to Date in Programming

In JavaScript: new Date(1700000000 * 1000).toISOString()

In Python: datetime.fromtimestamp(1700000000)

In SQL (MySQL): FROM_UNIXTIME(1700000000)

Back to Timestamp Converter home · Date to Timestamp · Unix Timestamp