Conversor de Timestamp Unix

Convierte entre timestamps Unix y fechas legibles. Segundos y milisegundos, UTC y local.

Auto-detects seconds vs milliseconds
Local timezone
Introduce un valor arriba para ver el resultado.

What is this for?

A Unix timestamp is a single integer — the number of seconds (or milliseconds) since 1970-01-01 00:00:00 UTC. They're everywhere: log files, API responses, JWT iat/exp claims, database created_at columns, cache headers. They're unambiguous and timezone-free, but not human-readable, so when something breaks at 1735689600, you need to know whether that's 2pm or 4am, today or last year. This tool flips between the integer form and the readable form in both directions, with seconds/ms auto-detection and a relative-time hint.

When to use it

Seconds, milliseconds, microseconds

Common gotchas