Current Unix Timestamp

Example:
JavaScript: Math.floor(Date.now() / 1000) Python: import time int(time.time()) PHP: time()
Get the current Unix timestamp (seconds since 1970-01-01). Updates in real-time.
Try Time Machine →

FAQs

How to get timestamp in JavaScript?

Math.floor(Date.now() / 1000) for seconds, or Date.now() for milliseconds.