实时时间戳

支持秒/毫秒切换,提供复制与暂停。

时间戳转日期

日期转时间戳

各语言代码示例

获取当前时间戳、timestamp ↔ date 转换。

const nowMs = Date.now();
const nowSec = Math.floor(Date.now() / 1000);
const fromTs = new Date(1728192000000);
const toTsMs = Date.parse('2025-01-01T00:00:00Z');
# #