Monu Tools

Unix 타임스탬프 변환기

Unix 타임스탬프를 날짜로, 날짜를 타임스탬프로 변환합니다: UTC, 로컬, ISO 8601, 상대 시간. 초와 밀리초를 자동으로 감지합니다.

타임스탬프 변환기 사용 방법

  1. 01

    Unix 타임스탬프 (초 또는 밀리초) 또는 날짜를 입력하세요.

  2. 02

    초 대 밀리초가 자동으로 감지됩니다.

  3. 03

    UTC, 로컬, ISO, 상대 값을 확인하거나 지금 버튼을 눌러 현재 시간을 확인하세요.

What a Unix timestamp is

A Unix timestamp is the number of seconds that have elapsed since 1 January 1970 at midnight UTC, a moment known as the epoch. Because it is just a count from a fixed point in UTC, it represents an exact instant with no time zone attached, which is why logs, APIs and databases love it.

What this converter does

It turns an epoch value into a readable date and a date back into an epoch, showing the result as UTC, your local time, an ISO 8601 string and a human relative description like "3 hours ago". A Now button fills in the current time.

Seconds and milliseconds

Seconds and milliseconds are detected automatically: a 10-digit number is read as seconds and a 13-digit number as milliseconds, which covers almost everything you will paste from a log or an API response.

Why timestamps and ISO 8601

Timestamps beat formatted date strings for storage and exchange because they are unambiguous, easy to sort and independent of time zone or locale. The usual pattern is to store the timestamp and convert it to a local, formatted date only when you display it to a person.

ISO 8601 (for example 2026-06-30T14:05:00Z) is the international standard text format for dates and times; the trailing Z means UTC. The relative value is handy for quickly judging how old a log line or record is.

The Year 2038 problem and privacy

One thing to know: systems that store Unix time in a signed 32-bit integer overflow on 19 January 2038, the so-called Year 2038 problem. Modern 64-bit systems are unaffected. Everything here runs in your browser, so nothing you enter is uploaded.

자주 묻는 질문

초인가요, 밀리초인가요?

둘 다입니다. 10자리 숫자는 초로, 13자리 숫자는 밀리초로 읽히므로 자동 감지를 신뢰할 수 있습니다.

어떤 시간대가 표시되나요?

UTC와 ISO 8601은 절대값이며, 로컬 값은 브라우저의 시간대를 사용합니다.

출처

이 도구 임베드하기

이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.

<iframe src="https://monu.tools/embed/ko/timestamp-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

관련 도구