10 digits vs 13 digits
Unix seconds often use 10 digits, while JavaScript millisecond timestamps usually use 13 digits.
Преобразуйте 10-значные секунды или 13-значные миллисекунды в local time и UTC.
Если лог, API или база данных возвращает числовой timestamp, этот гайд помогает понять точную дату.
1700000000 1700000000000
1700000000 is seconds; 1700000000000 is milliseconds. Both can map to the same moment when interpreted with the correct unit.
If the result looks decades away, the value was probably interpreted with the wrong unit.
Unix seconds often use 10 digits, while JavaScript millisecond timestamps usually use 13 digits.
Local time and UTC can show different clock values for the same moment.
Trim spaces or line breaks copied from logs before converting.
10-digit values are usually seconds; 13-digit values are usually milliseconds.
They represent the same instant in different timezones.
Yes. Use the main tool to copy ISO 8601 or another output template.
Преобразуйте читаемую дату в Unix секунды и миллисекунды для API, логов и БД.
Преобразуйте 13-значные миллисекунды и сравнивайте их с 10-значными Unix секундами.
Форматируйте, сжимайте и проверяйте JSON с понятным указанием позиции ошибки.
Преобразуйте текст и изображения между Base64 и читаемым содержимым.