# 타임스탬프 및 ISO8601

### **ISO8601**

[ISO8601](https://en.wikipedia.org/wiki/ISO_8601)은 날짜 및 시간을 형식화하기 위한 국제 표준이며, 데이터베이스에서 자주 사용됩니다.

이 형식으로 변환하려면 "as iso8601"을 사용하세요:

```
April 1, 2019 3:30pm as iso8601 | 2019-04-01T15:30:00+11:00
```

일반 날짜 형식으로 변환하려면 "to date"를 사용하세요:

```
2019-04-01T15:30:00 to date | 1 April 2019 at 3:30 pm
```

### **타임스탬프**

[Unix time](https://en.wikipedia.org/wiki/Unix_time)은 특정 시점을 설명하는 시스템으로, 프로그래밍에서 자주 사용됩니다. 타임스탬프는 "기준 날짜"(1970년 1월 1일) 이후 경과된 초의 수입니다.

```
April 1, 2019 to timestamp | 1554109200
1559740303.48 to date      | 5 June 2019 at 11:11 pm
```

현재 시점의 타임스탬프를 얻으려면 **current timestamp**를 사용하세요

```
current timestamp | 1559740303.48
```

#### **밀리초 타임스탬프**

밀리초 타임스탬프도 날짜로 변환할 수 있습니다

```
1733823083000 to date | 10 December 2024 at 8:31:23 pm
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.soulver.app/ko/undefined/dates/timestamps-and-iso8601.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
