Unix Timestamp Converter - エポック to Human Readable Date
現在のエポックは次のように翻訳されます
日付 | フォーマット |
10/11/2024 @ 1:52am | UTC |
2024-10-11T01:52:40+00:00 | ISO 8601 |
Fri, 11 Oct 2024 01:52:40 +0000 | RFC 822, 1036, 1123, 2822 |
Friday, 11-Oct-24 01:52:40 UTC | RFC 2822 |
2024-10-11T01:52:40+00:00 | RFC 3339 |
Unix タイムスタンプとは何ですか?
Unix タイムスタンプは、秒の累積合計として時間を追跡する方法です。このカウントは、1970年1月1日の Unix エポックから始まります。したがって、Unix タイムスタンプは特定の日付と Unix エポックの間の秒数にすぎません。この時点は、世界のどこにいても技術的に変わらないことを指摘する必要があります(このサイトの訪問者のコメントに感謝します)。これは、オンラインおよびクライアント側の動的および分散アプリケーションで日付情報を追跡およびソートするためにコンピュータシステムにとって非常に便利です。
Learn more about Unix time and Epoch time concepts.
人間が読みやすい時間 | 秒 |
1 時間 | 3600 秒 |
1 日 | 86,400 秒 |
1 週間 | 604,800 秒 |
1 ヶ月(30.44 日) | 2,629,746 秒 |
1 年(365.24 日) | 31,556,952 秒 |
2038年1月19日に何が起こりますか?
この日、Unix タイムスタンプは 32 ビットのオーバーフローのために機能しなくなります。この瞬間の前に、何百万ものアプリケーションが新しいタイムスタンプの慣習を採用するか、タイムスタンプに「少し」余分な時間を与える 64 ビット システムに移行する必要があります。
Related Programming Tools
Get Unix Time
Learn how to get current Unix timestamp in various programming languages
View Code Examples →Frequently Asked Questions
What is Unix Timestamp?
Unix timestamp is the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC. It's a standard way to represent time in computer systems and programming.
How to convert Unix timestamp to date?
You can convert Unix timestamp to human-readable date using our online converter above,
or programmatically using functions like new Date(timestamp * 1000)
in JavaScript.
What programming languages support Unix timestamp?
All major programming languages support Unix timestamps including Python, JavaScript, Java, C#, PHP, Ruby, Go, and more. Check our programming examples for specific implementation details.
Is this timestamp converter free?
Yes, our Unix timestamp converter is completely free to use. No registration required, works offline, and supports all major date formats and programming languages.