Marca de tiempo Unix

Convertir marcas de tiempo Unix a fechas o generar marcas de tiempo desde la hora actual.

Marca de tiempo Unix
Hora local -
Hora -
ISO 8601 -
Relativo -
Marca de tiempo Unix
Marca de Tiempo Unix -
Milisegundos -
Marca de tiempo Unix
-
Hora actual
-
Marca de tiempo Unix

A Unix timestamp (also known as Epoch time or POSIX time) is a system for describing a point in time. It represents the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC (the Unix Epoch), not counting leap seconds. This simple number makes date/time calculations and storage straightforward.

Marca de tiempo Unix

Unix time is a single signed integer that increases by one every second. It's timezone-independent since it always represents UTC. Converting to local time requires applying the appropriate timezone offset. The current Unix timestamp can be easily obtained in any programming language.

Analizador Cron
  • Database storage of date/time values
  • API timestamp parameters
  • Marca de tiempo Unix
  • Calculating time differences
  • Cross-timezone date handling
Generación rápida
Cada hora 3600 Milisegundos
1 day 86400 Milisegundos
1 week 604800 Milisegundos
1 month (30 days) 2592000 Milisegundos
1 year 31536000 Milisegundos
Frequently Asked Questions

What is the Year 2038 problem?

32-bit systems store Unix time in a signed 32-bit integer, which will overflow on January 19, 2038. Most modern systems use 64-bit integers, which won't overflow for billions of years.

Why use timestamps instead of date strings?

Timestamps are timezone-independent, take less storage, are easy to compare and calculate with, and avoid parsing ambiguities that can occur with date string formats.