> For the complete documentation index, see [llms.txt](https://documentation.soulver.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.soulver.app/ko/undefined/dates/timestamps-and-iso8601.md).

# 타임스탬프 및 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
```
