Epoch-Batch-Konverter
Konvertiere eine Liste von Unix-Epoch-Zeitstempeln in ISO-Datumszeiten mit einem Klick.
Kurze Antwort: Epoch-Batch-Konverter: Wandeln Sie eine Liste von Unix-Epoch-Zeitstempeln mit einem Klick in ISO-Datums- und Zeitangaben um. Läuft vollständig in Ihrem Browser, kostenlos, keine Registrierung erforderlich.
Zuletzt aktualisiert
Gut zu wissen
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.
Häufig gestellte Fragen
- Ist der Epoch-Konverter kostenlos?
- Ja — kostenlos ohne Anmeldung.
- Sekunden oder Millisekunden?
- Wählen Sie die Einheit oben — JavaScript und die meisten modernen APIs verwenden Millisekunden; Unix und PostgreSQL verwenden standardmäßig Sekunden.
- Werden meine Zeitstempel hochgeladen?
- Nein — jede Umwandlung findet in Ihrem Browser statt.
- Welches Ausgabeformat?
- TSV — öffnen Sie in Excel, Google Sheets oder einem beliebigen Texteditor.
- Kann ich ISO zurück in Epoch umwandeln?
- Verwenden Sie unseren individuellen Zeitstempel-Konverter für eine Rundreise.