Unix Timestamp Converter
The current Unix epoch time is 1774922635. Use this tool to convert between epoch timestamps and human-readable dates.
Current Unix Time
UTC:Tue, 31 Mar 2026 02:03:55 GMT
Local:3/31/2026, 2:03:55 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