Batchconverter voor Epoch-tijdstempels
Converteer een lijst van Unix epoch-timestamps naar ISO-datum- en tijdstippen met één klik.
Snel antwoord: Batchconverter voor Epoch-tijdstempels: zet een lijst met Unix-epoch-tijdstempels met één klik om naar ISO-datum-tijdwaarden. Werkt volledig in je browser, gratis en zonder registratie.
Laatst bijgewerkt
Goed om te weten
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.
Veelgestelde vragen
- Is de epoch-converter gratis?
- Ja — gratis zonder registratie.
- Seconden of milliseconden?
- Kies de eenheid bovenaan — JavaScript en de meeste moderne API's gebruiken milliseconden; Unix en PostgreSQL standaard op seconden.
- Worden mijn tijdstempels geüpload?
- Nee — elke conversie draait in je browser.
- Wat is het uitvoerformaat?
- TSV — open in Excel, Google Sheets of een teksteditor.
- Kan ik ISO terug naar epoch converteren?
- Gebruik onze individuele Timestamp Converter voor round-tripping.