Unix 타임스탬프를 날짜로, 날짜를 타임스탬프로 변환합니다: UTC, 로컬, ISO 8601, 상대 시간. 초와 밀리초를 자동으로 감지합니다.
타임스탬프 변환기 사용 방법
Unix 타임스탬프 (초 또는 밀리초) 또는 날짜를 입력하세요.
초 대 밀리초가 자동으로 감지됩니다.
UTC, 로컬, ISO, 상대 값을 확인하거나 지금 버튼을 눌러 현재 시간을 확인하세요.
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.
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 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.
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.
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>관련 도구
URL 및 URL 구성 요소를 퍼센트 인코딩하고 디코딩합니다. UTF-8 안전.
JSON을 CSV로, CSV를 JSON으로 양방향 변환합니다. 구분자 선택, 따옴표 처리, 결과 복사 기능을 제공하며 모든 작업이 브라우저에서 실행됩니다.
YAML을 JSON으로, JSON을 YAML로 양방향 변환합니다. 변환 중 유효성을 검사하고 명확한 오류 메시지를 표시합니다. 모든 작업이 브라우저에서 실행됩니다.
2진수, 8진수, 10진수, 16진수 간에 숫자를 변환합니다. 어느 필드든 편집하면 다른 필드가 즉시 업데이트되며 큰 값도 정확하게 처리합니다.