Convertidor de Lotes de Epoch
Convierte una lista de marcas de tiempo de Unix epoch a fechas ISO en un solo clic.
Respuesta rápida: Convertidor por lotes de marcas de tiempo Unix: convierte una lista de marcas de tiempo Unix a fechas y horas ISO en un clic. Funciona íntegramente en tu navegador, es gratis y no requiere registro.
Última actualización
Bueno saber
Unix epoch time counts the seconds elapsed since midnight UTC on 1 January 1970, which makes it the lingua franca for storing timestamps in databases and logs — it is timezone-free, sorts numerically, and needs no locale parsing. The one detail that causes the most bugs is the unit: classic Unix, PostgreSQL and most CLI tools store seconds, while JavaScript's Date.now(), Java and many web APIs use milliseconds. A value that looks a thousand times too large (or a date stuck in 1970) almost always means you picked the wrong unit at the top of the tool.
A quick sanity check helps: a ten-digit number is seconds (good until the year 2286), and a thirteen-digit number is milliseconds. If you see a suspicious date in 1970, your seconds were probably interpreted as milliseconds. Watch out too for the well-known Year 2038 problem, where signed 32-bit second counters overflow — modern systems use 64-bit values, but legacy exports can still truncate.
Because the output is tab-separated, you can paste it straight into a spreadsheet column or a text editor without any cleanup, which is why this format beats copying values one at a time when you are auditing a log dump or reconciling two systems. For converting a single value back and forth, or turning an ISO string into epoch, reach for the timestamp converter; to shift the resulting ISO datetimes into a specific zone, the timezone converter takes over.
Preguntas frecuentes
- ¿Es gratuito el conversor de epoch?
- Sí — gratuito sin registro.
- ¿Segundos o milisegundos?
- Selecciona la unidad en la parte superior — JavaScript y la mayoría de las APIs modernas usan milisegundos; Unix y PostgreSQL por defecto usan segundos.
- ¿Se suben mis marcas de tiempo?
- No — cada conversión se realiza en tu navegador.
- ¿Qué formato de salida?
- TSV — abierto en Excel, Google Sheets o cualquier editor de texto.
- ¿Puedo convertir ISO de vuelta a epoch?
- Usa nuestro Conversor de Timestamp individual para convertir en ambas direcciones.