# 시간대 변환

도시 이름(인구가 많은 곳) 또는 표준 시간대 약어(GMT 오프셋도 지원)를 사용하여 시간대 간 변환을 수행합니다.

```
6pm Sydney in Chicago | 1:00 am
2am PST to GMT        | 10:00 am
3pm GMT+8 to Paris    | 8:00 am
```

시간대 변환 시 도시 이름 대신 공항 코드를 사용할 수도 있습니다.

```
7:30am LAX to Japan | 11:30 pm
```

{% hint style="info" %}
시간대 변환 시 국가 이름을 사용할 수도 있습니다. 여러 시간대에 걸쳐 있는 국가의 경우, 해당 국가의 수도 시간대가 사용됩니다.
{% endhint %}

### 도시의 현재 시간

`time in timezone` 또는 `timezone time`을 사용하여 특정 장소의 현재 시간을 가져옵니다.

```
time in Paris    | 6:30 pm
Tokyo time       | 2:30 am
time in Thailand | Tomorrow at 12:30 am
```

특정 시간대의 날짜만 알고 싶다면, 그것도 요청할 수 있습니다.

```
date in Vancouver | 15 February
```

### 도시 간 시간 차이

장소 또는 시간대 간의 시간 차이를 찾으려면

```
time difference between Seattle and Moscow | 10 hours
difference between PDT & AEST              | 17 hours
```

### 간략한 미국 시간대 약어

Soulver는 미국에 대해 다음 간략한 시간대 약어를 지원합니다:

| 약어   | 시간대                    |
| ---- | ---------------------- |
| EST  | Eastern Standard Time  |
| EDT  | Eastern Daylight Time  |
| CST  | Central Standard Time  |
| CDT  | Central Daylight Time  |
| MST  | Mountain Standard Time |
| MDT  | Mountain Daylight Time |
| PST  | Pacific Standard Time  |
| PDT  | Pacific Daylight Time  |
| AKST | Alaska Standard Time   |
| AKDT | Alaska Daylight Time   |
| HST  | Hawaii Standard Time   |

또한 "eastern time", "pacific time", "mountain time", "central time"과 같은 이름이 지정된 미국 시간대도 사용할 수 있습니다.

{% hint style="info" %}
시간대 약어는 대소문자를 구분하지 않으므로, "PST"와 "pst"는 동일하게 작동합니다.
{% endhint %}


---

# 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/time/time-zones-and-cities.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.
