UnixタイムスタンプをUTC・現地時刻・カスタムタイムゾーンの日付文字列に変換、またはその逆の変換を行います。
タイムスタンプ変換の使い方
Unixタイムスタンプ(秒またはミリ秒)を入力するか、日付文字列を入力してください。
変換方向を選択してください。
変換結果が複数の形式で表示されます。
A Unix timestamp is the number of seconds that have elapsed since 1 January 1970 at midnight UTC, a moment known as the epoch. Because it is just a count from a fixed point in UTC, it represents an exact instant with no time zone attached, which is why logs, APIs and databases love it.
It turns an epoch value into a readable date and a date back into an epoch, showing the result as UTC, your local time, an ISO 8601 string and a human relative description like "3 hours ago". A Now button fills in the current time.
Seconds and milliseconds are detected automatically: a 10-digit number is read as seconds and a 13-digit number as milliseconds, which covers almost everything you will paste from a log or an API response.
Timestamps beat formatted date strings for storage and exchange because they are unambiguous, easy to sort and independent of time zone or locale. The usual pattern is to store the timestamp and convert it to a local, formatted date only when you display it to a person.
ISO 8601 (for example 2026-06-30T14:05:00Z) is the international standard text format for dates and times; the trailing Z means UTC. The relative value is handy for quickly judging how old a log line or record is.
One thing to know: systems that store Unix time in a signed 32-bit integer overflow on 19 January 2038, the so-called Year 2038 problem. Modern 64-bit systems are unaffected. Everything here runs in your browser, so nothing you enter is uploaded.
よくある質問
1970年1月1日00:00:00 UTC(Unixエポック)からの経過秒数です。タイムゾーンに依存しない日時表現として広く使われています。
JavaScriptなどは1000倍のミリ秒タイムスタンプを使用します。このツールは自動的に判別し、どちらも処理できます。
このツールを埋め込む
このツールをご自身のウェブサイトに追加できます。下のコードをコピーしてください。内容は自動的に最新の状態に保たれます。
<iframe src="https://monu.tools/embed/ja/timestamp-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>関連ツール
URLコンポーネントのエンコードとデコードを行います。特殊文字を%XX形式に変換したり、元に戻したりします。
JSONをCSVに、CSVをJSONに双方向で変換します。区切り文字の選択、引用符付きフィールドの処理ができます。すべてブラウザ内で処理されます。
YAMLをJSONに、JSONをYAMLに双方向で変換します。変換しながら検証し、エラーを明確に表示します。すべてブラウザ内で処理されます。
2進数、8進数、10進数、16進数の間で数値を変換します。どのフィールドを編集しても即座に他が更新されます。大きな値も端数なく正確に変換します。