Timestamp-DateTime Converter

Convert between Unix timestamps and human-readable dates instantly.

Current Time:
Note: All times are in UTC. The datetime picker uses local time input but converts to UTC for timestamp calculation.

DateTime Converter - Technical Details

This tool converts Unix timestamps (milliseconds or seconds) to human-readable date formats and vice versa. Unix timestamps represent the number of seconds/milliseconds since January 1, 1970 (UTC).

🔧 Command-line Alternative

date +%s      # Get current timestamp in seconds\ndate -d @1672531199   # Convert timestamp to human-readable format

📄 Reference

View Official Specification