Date to Timestamp Converter
Convert any date to timestamp with this free tool. Pick a date and time, and get the Unix timestamp in seconds and milliseconds.
Timestamp Converter
--
--
--
--
--
Convert seconds to human time
--
--
How to Convert Date to Timestamp
To convert a date to timestamp: parse the date, compute the milliseconds since Jan 1, 1970 UTC, then divide by 1000 for seconds. This converter does it for you.
Date to Timestamp in Code
JavaScript: Math.floor(new Date('2023-11-14T22:13:20Z').getTime()/1000)
Python: int(datetime(2023,11,14,22,13,20,tzinfo=utc).timestamp())
MySQL: UNIX_TIMESTAMP('2023-11-14 22:13:20')