Toolbyeタイムスタンプツール

日付を Unix タイムスタンプに変換

読みやすい日時を API、ログ、DB 向けの Unix 秒・ミリ秒に変換します。

解決できること

日付文字列、ISO 値、ローカル時刻から数値 timestamp が必要なときに使います。

使い方

  1. Prepare a clear date-time string such as an ISO value or YYYY-MM-DD HH:mm:ss.
  2. Open the main timestamp tool and paste it into the DateTime to Timestamp panel.
  3. Choose the timezone context before trusting the output.
  4. Copy seconds or milliseconds depending on the target system.

Date input example

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.

よくあるミス

Missing timezone

A date without timezone may be interpreted as browser local time.

Ambiguous date format

Prefer ISO or YYYY-MM-DD HH:mm:ss to avoid month/day confusion.

Wrong output unit

Check whether your API expects seconds or milliseconds before copying.

日付から timestamp FAQ

Can I use ISO date strings?

Yes. ISO strings are recommended when timezone clarity matters.

Should I copy seconds or milliseconds?

Use seconds for many backend APIs and milliseconds for JavaScript Date workflows.

Why did the result shift by timezone?

The same date text may be parsed in local time unless a UTC offset is included.

関連タイムスタンプガイド

Unix タイムスタンプを日付に変換

10桁の秒または13桁のミリ秒を、ローカル時刻と UTC の読みやすい日時に変換します。

ミリ秒タイムスタンプ変換

13桁のミリ秒 timestamp を変換し、10桁の Unix 秒と比較して単位ミスを防ぎます。

関連ツール

JSON Formatter

JSON を整形・圧縮・検証し、エラー位置を確認できます。

Base64 エンコード/デコード

テキストや画像を Base64 と相互変換できます。