How to Convert Unix Timestamp to Date
Quick Answer
A Unix timestamp is the number of seconds since January 1, 1970. Use a timestamp converter to instantly convert Unix timestamps to readable dates and times.
Common Use Cases
- API responses - Many APIs return timestamps instead of formatted dates
- Database records - Unix timestamps are commonly used for storing dates
- Log files - Server logs often use Unix timestamps
- Programming - Many languages use Unix time internally
Step-by-Step Guide
- Find the timestamp - Unix timestamps are numbers like 1699123456 (seconds) or 1699123456789 (milliseconds)
- Paste into converter - Enter the timestamp in the Timestamp Converter
- Get the result - See the date and time in your local timezone, plus other formats
Example
Input:
1699123456
Output:
November 4, 2023 at 10:30:56 PM UTC
Frequently Asked Questions
What is a Unix timestamp?
A Unix timestamp (also called epoch time) is the number of seconds
that have passed since January 1, 1970, 00:00:00 UTC. It's a standard way to represent
time in computing.
How do I know if it's seconds or milliseconds?
Unix timestamps in seconds are typically 10 digits (e.g.,
1699123456). Millisecond timestamps are 13 digits (e.g., 1699123456789). Most converters
handle both automatically.
Do Unix timestamps have timezone?
No. Unix timestamps are always in UTC. When converting, you apply
the timezone offset to get local time. The timestamp itself is timezone-independent.
Can I convert dates back to Unix timestamps?
Yes. Most timestamp converters work both ways - you can enter a date
and get the Unix timestamp, or enter a timestamp and get the date.