Unix Timestamp Converter
Code Examples
// Current timestamp
new Date(Convert timestamp to date).toLocaleString()import time
time.time() # Current timestamp
time.ctime(1800000000) # Convert timestamp to dateimport "time"
time.Now().Unix() // Current timestamp
time.Unix(1800000000, 0).String()# Current timestamp
date +%s
# Convert timestamp to date
date -d @1800000000Unix timestamp (also known as POSIX time or epoch) is the number of seconds that have elapsed since 00:00:00 UTC on January 1, 1970, not counting leap seconds. Most Unix systems store timestamps as 32-bit signed integers, which will overflow on January 19, 2038.
Free online Unix timestamp converter with seconds/milliseconds/microseconds bidirectional conversion, automatic unit detection, UTC/Local timezone toggle, and built-in multi-language code examples. Ready to use instantly for development and debugging.