ZeroTrace OSINT
Timestamp Converter
Unix / ISO / UTC / local / Windows FILETIME / Apple Cocoa / LDAP / WebKit epoch conversions, with multi-timezone columns.
Different systems express time in different epoch formats. The timestamp converter parses any of them and returns the others, with multi-timezone display and DST awareness.
Supported formats
| Format | Epoch | Used by |
|---|---|---|
| Unix seconds | 1970-01-01 UTC | Most Unix systems, JSON APIs |
| Unix milliseconds | 1970-01-01 UTC | JavaScript, mobile apps |
| Unix microseconds | 1970-01-01 UTC | High-resolution logs |
| Unix nanoseconds | 1970-01-01 UTC | Go's time.Now().UnixNano() |
| ISO 8601 | n/a | Most modern systems |
| RFC 3339 | n/a | HTTP, JSON-API |
| Windows FILETIME | 1601-01-01 UTC | Windows file metadata |
| Apple Cocoa | 2001-01-01 UTC | macOS / iOS |
| LDAP | 1601-01-01 UTC | Active Directory, OpenLDAP |
| WebKit / Chrome | 1601-01-01 UTC | Chrome / Chromium history database |
| Mozilla | 1970-01-01 UTC, microseconds | Firefox internal storage |
Auto-detect
Paste any of the formats above (or a recognisable variation) and the converter detects the source and returns all the others. The auto-detect handles common ambiguities:
- A 10-digit number is most likely Unix seconds.
- A 13-digit number is most likely Unix milliseconds.
- An 18-digit number could be Windows FILETIME or Unix nanoseconds — the converter shows both.
Multi-timezone columns
For any input, the converter shows the result in:
- UTC.
- Your local timezone.
- A configurable list of additional timezones (default: New York, London, Berlin, Tokyo, Sydney).
Click "add timezone" to add any IANA timezone string.
DST flag and UTC offset
For each timezone column:
- The current UTC offset.
- Whether DST is currently in effect for that zone.
- Whether the converted timestamp falls in DST for that zone (different from "is DST in effect now" when the timestamp is in the past or future).
For investigations involving timestamps that cross DST boundaries, this is the cheap way to avoid an off-by-one-hour error.
Relative form
For Unix-style timestamps, the converter shows:
- "X minutes ago" / "X hours ago" / "X days ago" for past timestamps.
- "in X minutes" / "in X hours" / "in X days" for future timestamps.
- Absolute date for distant past or future.
For log analysis where every line has a timestamp in some custom format, paste a single example into the converter and confirm the format before bulk-converting the rest.
Bulk conversion
Bulk paste accepts a list of timestamps (one per line). The converter applies the same auto-detect to each and returns the converted form per line. Output exports as CSV — useful for adding human-readable timestamps to logs.
Pivots
The timestamp converter does not pivot to other tools. It is a pure utility.
Sources
All conversion is local. The timezone catalog uses the system's IANA timezone database.