UNIX Timestamp to Date Converter
Convert UNIX timestamps to human-readable dates instantly. Simple, fast, and free to use with no limitations. Need to convert dates to timestamps? Try our Date to Timestamp converter.
Enter a UNIX timestamp to convert it to a human-readable date.
Converted Date:
Convert UNIX Timestamp to Date
Convert UNIX timestamps (epoch time) to human-readable dates instantly. A UNIX timestamp represents the number of seconds that have elapsed since January 1, 1970, at 00:00:00 UTC.
How to Use This Converter
- Enter a UNIX timestamp in the input field (e.g., 1640995200)
- Click "Convert to Date" or wait for automatic conversion
- View the results in multiple formats (UTC, Local Time, ISO 8601)
- Use the "Current Time" button to get the current timestamp
Output Formats
- UNIX Timestamp: The original timestamp you entered
- UTC: Universal Coordinated Time (Greenwich Mean Time)
- Local Time: Your browser's local timezone
- ISO 8601: International standard date format
Common UNIX Timestamps
1640995200 → January 1, 2022 00:00:00 UTC
1704067200 → January 1, 2024 00:00:00 UTC
1735689600 → January 1, 2025 00:00:00 UTC
946684800 → January 1, 2000 00:00:00 UTC
0 → January 1, 1970 00:00:00 UTC (UNIX epoch)
Programming Examples
// JavaScript
const timestamp = 1640995200;
const date = new Date(timestamp * 1000);
console.log(date.toUTCString()); // "Sat, 01 Jan 2022 00:00:00 GMT"
// Python
import datetime
timestamp = 1640995200
date = datetime.datetime.fromtimestamp(timestamp)
print(date.strftime('%Y-%m-%d %H:%M:%S')) # "2022-01-01 00:00:00"
// PHP
$timestamp = 1640995200;
$date = date('Y-m-d H:i:s', $timestamp);
echo $date; // "2022-01-01 00:00:00"
💡 Pro Tips
- Use the "Current Time" button to quickly get the current timestamp
- Results update automatically as you type
- Copy results with one click using the copy button
- Need to convert dates to timestamps? Use our Date to Timestamp converter
- All conversions happen client-side for maximum privacy
Related Tools
JWT Decoder
Decode and verify JSON Web Tokens (JWT) online. View token payload, headers, and signature. Free tool for developers to debug and validate JWTs.
Regex Tester
Test and validate regular expressions with real-time matching, highlighting, and detailed match information. Free online regex testing tool for developers.
Date to Timestamp
Convert human-readable dates to UNIX timestamps instantly. Free online tool for developers to convert dates to epoch time. Supports multiple date formats.