Fineuralab

Compare Unix Seconds and Milliseconds

A timestamp example for avoiding seconds-versus-milliseconds mistakes in release windows.

Worked example

Task context

A release note includes both a 10-digit Unix timestamp and a 13-digit JavaScript timestamp. Convert both before scheduling a reminder or publish window.

Open the related tool: Timestamp Converter

Input and output

Input timestamps

1781494400
1781494400000

Interpretation

1781494400 = Unix seconds
1781494400000 = Unix milliseconds
Both represent the same instant when interpreted with the correct unit.

Checks before copying

  • Count digits before converting: 10 digits usually means seconds, 13 digits usually means milliseconds.
  • Check the target timezone separately from the timestamp value.
  • Never schedule a real billing, release, or automation event from an unreviewed conversion.

Lesson: The unit is part of the value. A seconds/milliseconds mismatch can shift a date by decades.

Keep working

Reviewed and updated: June 23, 2026