在线 Unix 时间戳转日期 — 免费 Epoch 转换器
在 Unix 纪元秒与人类可读日期间转换。支持毫秒、ISO 8601 与本地时区。
粘贴 Unix 时间戳(秒或毫秒)或 ISO 日期,转换器会并排显示两种表示。
Now (seconds)
0
Now (milliseconds)
0
Now (ISO 8601)
常见用例
- 1Translate an exp claim from a JWT into a human-readable expiry time.
- 2Convert a created_at log field into your local timezone for debugging.
- 3Plan cron schedules — confirm an epoch value matches the moment you expect it.
常见问题
Why are some timestamps 13 digits and others 10?+
10 digits = seconds since 1970-01-01 UTC. 13 digits = milliseconds. The tool detects both automatically based on length.
Does it handle leap seconds?+
No. Unix time intentionally ignores leap seconds — they are smeared at the OS level. This converter follows the same convention as every standard library.
What timezone is shown?+
ISO 8601 output is always UTC. The "Local" line uses your browser locale and timezone via Intl.DateTimeFormat.