इस टूल में कोई समस्या है?
«बैच Unix टाइमस्टैम्प कन्वर्टर ऑनलाइन» के बारे में
यह टूल एक ही ऑपरेशन में कई Unix टाइमस्टैम्प को पठनीय दिनांक/समय स्ट्रिंग में परिवर्तित करता है। टाइमस्टैम्प की एक सूची पेस्ट करें — प्रति पंक्ति एक — और टूल प्रत्येक को UTC और आपके स्थानीय टाइमज़ोन में ISO 8601 के रूप में स्वरूपित लौटाता है।
लॉग फ़ाइलों का विश्लेषण करते समय उपयोगी जो Unix epoch सेकंड या मिलीसेकंड के रूप में समय रिकॉर्ड करते हैं।
टूल स्वतः-पता लगाता है कि इनपुट सेकंड (10 अंक) या मिलीसेकंड (13 अंक) है।
इस टूल का उपयोग कैसे करें
How to convert many Unix timestamps to ISO at once
Paste the timestamps
Drop one timestamp per line into the "Timestamps (one per line)" field. The tool auto-detects seconds vs milliseconds — values with 13+ digits are treated as ms, shorter values as seconds.
Press Run
Result returns `lines` — an array of `<unix> -> <iso>` strings, in input order. Lines that don't parse as numbers are silently dropped, so check the count if you expect a specific length.
Output time zone
ISO output is always in UTC (suffix `Z`). For local time, post-process with `new Date(iso).toLocaleString(...)` or use a different tool that takes a target zone.
Where these come from
Common sources of batch timestamps: server logs (often seconds), JS `Date.now()` exports (always ms), database CSV dumps (depends on the schema). Mix is fine — the tool decides per line.