Unix Timestamp Converter
The current Unix epoch time is 1778980760. Use this tool to convert between epoch timestamps and human-readable dates.
Current Unix Time
UTC:Sun, 17 May 2026 01:19:20 GMT
Local:5/17/2026, 1:19:20 AM
timestamp date
date timestamp
Everything about Unix Timestamps
A Unix timestamp is a way to track time as a running total of seconds. This count starts at the Unix Epoch on January 1st, 1970 at UTC. Therefore, the Unix timestamp is merely the number of seconds between a particular date and the Unix Epoch.
Common programming languages:
- JavaScript:
Math.floor(Date.now() / 1000) - Python:
import time; time.time() - PHP:
time() - Java:
System.currentTimeMillis() / 1000