~/tools/timestamp-converter
Timestamp Converter
Convert Unix timestamps to human-readable dates instantly — and back. Supports seconds, milliseconds, multiple timezones, and ISO 8601.
What is a Unix Timestamp?
A Unix timestamp (also called Epoch time) is the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC. It is a widely used standard for representing points in time in computer systems, databases, APIs, and log files.
Most programming languages and databases store time as Unix timestamps internally. JavaScript uses milliseconds (Date.now()), while Unix systems and most backend languages use seconds.
Common Use Cases
Log File Debugging
Convert raw timestamps in server logs to readable local time
API Response Parsing
Decode created_at / updated_at fields from REST or GraphQL APIs
Database Queries
Build WHERE clauses using Unix timestamps for time-range filtering
JWT Expiry (exp)
Check if a JWT token has expired by converting its exp claim
Cron / Scheduler
Verify that scheduled job execution times match expectations
Timezone Conversion
See how the same moment appears in different timezones worldwide