Unix Timestamp Converter

Convert Unix timestamps to human-readable dates and back. See the current epoch time live.

Unix 타임스탬프 변환기

Unix 타임스탬프를 날짜로, 날짜를 타임스탬프로 변환. 현재 Epoch 시간을 실시간으로 확인.

Current Unix Timestamp

— ms
Local Time
UTC
ISO 8601

Enter seconds (10 digits) or milliseconds (13 digits) — auto-detected.

초 단위(10자리) 또는 밀리초 단위(13자리) 입력 — 자동으로 구분합니다.

Local
UTC
ISO 8601
Relative

Select a date and time to get its Unix timestamps.

날짜와 시간을 선택하면 Unix 타임스탬프를 얻을 수 있습니다.

Seconds
Milliseconds
ISO 8601

How to use this tool

Step 1

See the current time live

The top card shows the current Unix timestamp in real time, updating every second. Copy it with one click.

Step 2

Paste a timestamp

Switch to the "Timestamp → Date" tab and paste any Unix timestamp (seconds or milliseconds). The tool auto-detects the unit.

Step 3

Or pick a date

Use the "Date → Timestamp" tab to select a date and time. Get the corresponding Unix timestamp in seconds, milliseconds, and ISO 8601 instantly.

Step 4

Copy any result

Each output field has its own Copy button. Click it once to copy that value to your clipboard — the button briefly confirms the copy.

사용 방법

Step 1

현재 시간을 실시간으로 확인

상단 카드에서 현재 Unix 타임스탬프를 실시간으로 볼 수 있습니다. 매 초 업데이트되며, 버튼 한 번으로 복사할 수 있습니다.

Step 2

타임스탬프 붙여넣기

"Timestamp → Date" 탭으로 전환한 뒤 Unix 타임스탬프를 입력하세요. 초 또는 밀리초 단위를 자동으로 감지합니다.

Step 3

날짜 선택

"Date → Timestamp" 탭에서 날짜와 시간을 선택하면, 해당하는 Unix 타임스탬프(초/밀리초)와 ISO 8601 문자열을 즉시 확인할 수 있습니다.

Step 4

결과 복사

각 출력 항목 옆에 복사 버튼이 있습니다. 한 번 클릭하면 해당 값이 클립보드에 복사됩니다.

Frequently Asked Questions

A Unix timestamp (also called epoch time) is the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC — known as the Unix epoch. It is a single integer that represents any point in time unambiguously, regardless of timezone or locale. For example, the timestamp 1719100800 refers to June 23, 2024, 00:00:00 UTC.
The current Unix timestamp is shown live at the top of this page, updating every second. You can also get it in any language: JavaScript: Math.floor(Date.now() / 1000), Python: import time; int(time.time()), Bash: date +%s.
Use new Date(timestamp * 1000) to create a Date object from a seconds-based timestamp (multiply by 1000 to convert to milliseconds). Then call .toLocaleString() for local time, .toUTCString() for UTC, or .toISOString() for the ISO 8601 format. For example: new Date(1719100800 * 1000).toISOString() returns "2024-06-23T00:00:00.000Z".
The standard Unix timestamp counts seconds (a 10-digit number in 2024, e.g. 1719100800). Many programming environments — including JavaScript's Date.now() — use milliseconds instead (a 13-digit number, e.g. 1719100800000). This converter auto-detects the unit: if the value is greater than 10,000,000,000 (1e10), it treats it as milliseconds.
Epoch time is another name for Unix time / Unix timestamp. Developers prefer it because it is a simple integer — easy to store in a database, compare, sort, and do arithmetic on. It has no timezone ambiguity, no daylight saving time complications, and is universally supported across programming languages, operating systems, and databases.

자주 묻는 질문

Unix 타임스탬프(Epoch 시간이라고도 함)는 1970년 1월 1일 00:00:00 UTC(Unix Epoch)부터 경과한 초(秒) 수입니다. 타임존이나 로케일과 무관하게 특정 시각을 하나의 정수로 표현합니다. 예를 들어 1719100800은 2024년 6월 23일 00:00:00 UTC를 가리킵니다.
이 페이지 상단 카드에서 현재 Unix 타임스탬프를 실시간으로 확인할 수 있습니다. 코드로 얻으려면: JavaScript: Math.floor(Date.now() / 1000), Python: import time; int(time.time()), Bash: date +%s.
초 단위 타임스탬프에 1000을 곱한 뒤 new Date(timestamp * 1000)으로 Date 객체를 만드세요. 그런 다음 .toLocaleString()으로 현지 시간, .toUTCString()으로 UTC, .toISOString()으로 ISO 8601 형식을 얻을 수 있습니다.
표준 Unix 타임스탬프는 초 단위(2024년 기준 10자리, 예: 1719100800)입니다. JavaScript의 Date.now() 등 많은 환경에서는 밀리초 단위(13자리, 예: 1719100800000)를 사용합니다. 이 변환기는 10,000,000,000(1e10) 초과 여부로 단위를 자동 감지합니다.
Epoch 시간은 Unix 타임스탬프의 다른 이름입니다. 단순한 정수이기 때문에 데이터베이스 저장, 비교, 정렬, 산술 연산이 쉽습니다. 타임존이나 일광 절약 시간(DST)의 복잡함 없이 모든 프로그래밍 언어, OS, 데이터베이스에서 범용적으로 지원됩니다.