Unix Timestamp to Date Converter — Human-Readable Dates

Convert Unix timestamps to human-readable dates and vice versa. Current timestamp, ISO 8601, relative time.

What is a Unix Timestamp?

A Unix timestamp (epoch time) is the number of seconds since January 1, 1970 00:00:00 UTC. It's used universally in programming for storing and transmitting dates.

Common Timestamp Values

TimestampDate
0Jan 1, 1970 (Unix Epoch)
1000000000Sep 9, 2001
1700000000Nov 14, 2023
2000000000May 18, 2033

Getting Timestamps in Code

// JavaScript
Math.floor(Date.now() / 1000)

// Python
import time; int(time.time())

// Bash
date +%s

// PHP
time()

Automate This With Our API

TextForge API lets you do this programmatically. Free tier: 50 requests/day.

Get API Access Free →

Related Tools