Unix时间戳(Unix Epoch)是自1970年1月1日 00:00:00 UTC 以来经过的秒数,不包含闰秒。它是计算机系统中表示时间的标准方式。
JavaScript: Date.now()
new Date(ts*1000)
Python: time.time()
datetime.fromtimestamp(ts)
Shell: date +%s
date -d @1700000000