单数标记 2188800
Monday, 26 January 1970 at 08:00:00 UTC
56 years ago
Monday
ISO 星期5
1970 的天 26 的天
过去
永久的共享页面, 只需一瞬间即可。 将 URL 粘贴在一张票或聊天上, 而其他人则看到世界协调时、 自己的时区和每个通用格式所设定的相同瞬间 —— 没有“ 哪个时区是" 往返旅行中的时间区 。
此时的每个格式
| 格式 | 价值 | 复制副本 |
|---|---|---|
ISO 8601 The default for APIs and logs |
1970-01-26T08:00:00Z | |
ISO 8601 with milliseconds Sub-second precision, still ISO 8601 |
1970-01-26T08:00:00.000Z | |
RFC 3339 ISO 8601 profile used by JSON APIs; +00:00 instead of Z |
1970-01-26T08:00:00+00:00 | |
RFC 2822 Email Date: header |
Mon, 26 Jan 1970 08:00:00 +0000 | |
RFC 1123 / HTTP date HTTP Date:, Expires:, Last-Modified: |
Mon, 26 Jan 1970 08:00:00 GMT | |
RFC 850 Legacy HTTP/1.0 date, two-digit year |
Monday, 26-Jan-70 08:00:00 GMT | |
Unix timestamp (seconds) Seconds since 1970-01-01T00:00:00Z |
2188800 | |
Unix timestamp (milliseconds) JavaScript Date.now() |
2188800000 | |
ATOM / W3C-DTF Atom and RSS feeds, W3C date-time |
1970-01-26T08:00:00+00:00 | |
Date (YYYY-MM-DD) Calendar date only |
1970-01-26 | |
Time (24-hour) Clock time only |
08:00:00 | |
Time (12-hour) Clock time with AM/PM |
08:00:00 AM | |
ISO 8601 basic No separators; filenames and IDs |
19700126T080000Z | |
ISO week date Year-week-weekday |
1970-W05-1 | |
Human readable For prose and UI |
Monday, 26 January 1970 at 08:00:00 UTC |
此时此刻,全世界
UTC
08:00
New York
03:00
London
09:00
Tokyo
17:00
Kolkata
13:30
在您自己的时区 : 启用 JavaScript 查看此功能
在代码中生成此值
Python
from datetime import datetime, timezone
now = datetime.now(timezone.utc)
print(now.isoformat()) # 2026-01-01T12:00:00+00:00
print(int(now.timestamp())) # unix seconds
JavaScript
const now = new Date();
console.log(now.toISOString()); // 2026-01-01T12:00:00.000Z
console.log(Date.now()); // unix milliseconds
console.log(Math.floor(Date.now() / 1000)); // unix seconds
Go
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now().UTC()
fmt.Println(now.Format(time.RFC3339)) // 2026-01-01T12:00:00Z
fmt.Println(now.Unix()) // unix seconds
}
Java
import java.time.Instant;
Instant now = Instant.now(); // always UTC
System.out.println(now); // 2026-01-01T12:00:00Z
System.out.println(now.getEpochSecond());
C#
var now = DateTimeOffset.UtcNow;
Console.WriteLine(now.ToString("o")); // ISO 8601 round-trip
Console.WriteLine(now.ToUnixTimeSeconds());
Console.WriteLine(now.ToUnixTimeMilliseconds());
Rust
// chrono = "0.4"
use chrono::Utc;
let now = Utc::now();
println!("{}", now.to_rfc3339()); // 2026-01-01T12:00:00+00:00
println!("{}", now.timestamp()); // unix seconds
大约此时间戳
What date is timestamp 2188800?
Monday, 26 January 1970 at 08:00:00 UTC. In ISO 8601 that is 1970-01-26T08:00:00Z, and in milliseconds it is 2188800000.
How long ago was 2188800?
56 years ago — measured against the current UTC time when this page was rendered. It fell on a Monday, in ISO week 5 of 1970, day 26 of the year.
How do I produce this value in code?
In Python, int(datetime(*, tzinfo=timezone.utc).timestamp()) gives 2188800; in JavaScript, Date.parse('1970-01-26T08:00:00Z') gives 2188800000 because JavaScript works in milliseconds. The snippets below cover the rest.