Missing timezone
A date without timezone may be interpreted as browser local time.
読みやすい日時を API、ログ、DB 向けの Unix 秒・ミリ秒に変換します。
日付文字列、ISO 値、ローカル時刻から数値 timestamp が必要なときに使います。
2026-01-01 00:00:00 2026-01-01T00:00:00Z
The tool returns Unix seconds and Unix milliseconds for the same date-time input.
Use UTC input when the target API expects a timezone-independent value.
A date without timezone may be interpreted as browser local time.
Prefer ISO or YYYY-MM-DD HH:mm:ss to avoid month/day confusion.
Check whether your API expects seconds or milliseconds before copying.
Yes. ISO strings are recommended when timezone clarity matters.
Use seconds for many backend APIs and milliseconds for JavaScript Date workflows.
The same date text may be parsed in local time unless a UTC offset is included.