Devtools.supstudio.in

Tools/Timestamp

Microseconds and nanoseconds

What this is

Python datetime.timestamp() * 1e6, PostgreSQL EXTRACT(EPOCH), and Go UnixMicro produce microseconds. Java Instant and some tracers use nanoseconds. JavaScript Date only has millisecond precision — extra digits are kept for display then truncated for Date.

1712000000000000

2024-04-01T19:33:20.000Z

Open in converter

Zones: UTC · New York · Los Angeles · Chicago · London · Paris · Berlin · India (Kolkata) · Tokyo · Singapore · Dubai · Sydney

FAQ

Float seconds?
1712000000.123 is still 'seconds' with a fraction. This parser accepts one decimal point on a Unix number.

Related