Convertisseur d'Époque en Lot
Convertissez une liste de timestamps d'époque Unix en date-temps ISO en un clic.
Réponse rapide: Convertisseur d’horodatages Unix par lots : convertissez une liste d’horodatages Unix en dates et heures ISO en un clic. Fonctionne entièrement dans votre navigateur, gratuitement et sans inscription.
Dernière mise à jour
Bon à savoir
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.
Questions fréquentes
- Le convertisseur d'epoch est-il gratuit ?
- Oui — gratuit sans inscription.
- Secondes ou millisecondes ?
- Choisissez l'unité en haut — JavaScript et la plupart des API modernes utilisent les millisecondes ; Unix et PostgreSQL par défaut en secondes.
- Mes horodatages sont-ils téléchargés ?
- Non — chaque conversion se fait dans votre navigateur.
- Quel format de sortie ?
- TSV — ouvrez dans Excel, Google Sheets ou tout éditeur de texte.
- Puis-je convertir ISO en epoch ?
- Utilisez notre convertisseur d'horodatage individuel pour le retour.