bulk conversion
Batch Timestamp Converter
Converting timestamps one by one from a log dump or API response is tedious. Paste the whole list — one per line — and get a UTC, ISO 8601 and timezone table back instantly, ready to copy or download as CSV.
Typical uses
- Log analysis — paste the
created_atcolumn of a log export and eyeball the real times. - API debugging — decode the millisecond timestamps in a JSON response without writing a script.
- Database audits — sanity-check epoch columns before and after a migration.
- Spreadsheet prep — export the decoded times as CSV and join them back to your data.
Bulk conversion in code
Prefer a script? The same logic in two lines:
# shell (GNU date) — decode a file of second-precision timestamps, one per line
while read ts; do date -u -d "@$ts" '+%Y-%m-%d %H:%M:%S UTC'; done < timestamps.txt
# macOS/BSD: date -u -r "$ts" '+%Y-%m-%d %H:%M:%S UTC'
# python
from datetime import datetime, timezone
[datetime.fromtimestamp(int(line), timezone.utc) for line in open('timestamps.txt')]Watch the unit: if date or fromtimestamp shows dates in 1970, your values are milliseconds — divide by 1,000. The auto-detect above handles this per row.
Frequently asked questions
How do I convert a list of timestamps at once?
Can the batch contain mixed units?
How do I get the results into a spreadsheet?
Is my data sent to a server?
Related tools
Unix Timestamp Converter
Convert timestamps and dates with automatic unit detection — seconds, milliseconds, microseconds, nanoseconds.
Timestamp to Date
Turn any Unix timestamp into UTC, local time, ISO 8601, RFC 3339 and relative time.
Date to Timestamp
Pick a date, time and IANA timezone to get the exact Unix timestamp in every precision.
Current Unix Time
Live Unix timestamp in seconds, milliseconds, microseconds and nanoseconds with copy buttons.
Epoch Converter
The classic epoch time converter: bidirectional conversion between epoch values and human-readable dates.
Timezone Converter
See one instant across multiple IANA timezones side by side, with add, reorder and copy-all.