Unix Timestamp Converter - Epoch to Human Readable Date

输入时间戳 支持以秒、毫秒、微秒和纳秒为单位的 Unix 时间戳。
自 1970 年 1 月 1 日以来的秒数。 (UTC)
12:22:33 PM
输入日期和时间
小时(24小时制)
分钟
当前时间戳转换为
日期 格式
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 →

Convert to Date

Convert epoch timestamp to human-readable date format

View Code Examples →

Convert to Timestamp

Convert human-readable date to epoch timestamp

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.