Convert timestamps to dates and dates to timestamps with timezone support
Seconds since January 1, 1970, 00:00:00 UTC (Unix Epoch). Universal standard used by most systems.
Example: 1640995200 = January 1, 2022, 00:00:00 UTC
Milliseconds since Unix Epoch. Common in JavaScript and web applications for higher precision.
Example: 1640995200000 = same date with millisecond precision
Human-readable international standard for date/time representation.
Example: 2022-01-01T00:00:00Z
Primary time standard. No daylight saving time changes. Recommended for storing timestamps.
Time in user's current timezone. Good for display purposes but problematic for storage.
Difference from UTC (e.g., +08:00 for Beijing, -05:00 for New York EST).
Enter a timestamp to see the conversion results
Enter a date and time to see the conversion results
UTC: Coordinated Universal Time (No daylight saving)
Unix Timestamp: Seconds since January 1, 1970, 00:00:00 UTC
Epoch Time: Another term for Unix timestamp
ISO 8601: International date/time standard (YYYY-MM-DDTHH:mm:ssZ)