Unix Timestamp Converter - Epoch to Human Readable Date
當前的 epoch 轉換為
日期 | 格式 |
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 Epoch 開始,以 UTC 時間為準。因此,Unix 時間戳只是特定日期與 Unix Epoch 之間的秒數。還應指出(感謝網站訪客的評論),這個時間點在全球任何地方都不會改變。這對於計算機系統來說非常有用,用於跟蹤和排序動態和分佈式應用程序中的日期信息,無論是在線還是客戶端。
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 日會發生什麼?
在這個日期,由於 32 位溢出,Unix 時間戳將無法工作。在此之前,數百萬個應用程序需要採用新的時間戳約定或遷移到 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.