Unix Timestamp Converter
The current Unix epoch time is 1771026155. Use this tool to convert between epoch timestamps and human-readable dates.
Current Unix Time
UTC:Fri, 13 Feb 2026 23:42:35 GMT
Local:2/13/2026, 11:42:35 PM
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