# 단위 변환

특정 단위로 변환하려면 `to` 또는 `in` 또는 `as`를 사용하세요.

```
10 km in m                    | 10,000 m
5 hours 30 minutes to seconds | 19,800 seconds
100 pounds in kg              | 45.36 kg
```

또는 다음 방법을 사용할 수 있습니다:

```
meters in 10 km  | 10,000 m
days in 3 weeks  | 21 days
seconds in a day | 86,400 s
```

{% hint style="success" %}
단축키로, 값 없이 두 단위 이름을 입력하여 변환을 확인할 수도 있습니다:

"km m" (= 1,000 m)
{% endhint %}

Soulver는 답변 열에 단위 전체 이름 대신 단위 기호를 사용합니다.

답변을 Ctrl-클릭하면 전체 단위 이름을 볼 수 있습니다

![](/files/tWlttWPo2fqcuEbETA6d)

## 단위 관련 참고 사항

#### **단위와 일반 숫자의 혼합**

일반 숫자와 단위를 혼합할 때, 가장 가까운 단위가 자동으로 사용됩니다. 이를 \*\*단위 동화(unit assimilation)\*\*라고 합니다.

```
300 + 20 km | 320 km
$20 + 30    | $50.00
```

#### **혼합 단위의 덧셈 및 뺄셈**

혼합 단위 유형으로 계산할 때, **더 큰 단위가 우선합니다**:

```
1km + 1,000m | 2 km
```

단위들이 공통 기본 단위를 공유하지 않을 경우, **마지막에 사용된 단위가 우선합니다:**

```
$200 + €200 | €308.84
```

#### **단위 곱셈**

Soulver는 수학 엔진에 미리 정의된 단위만 지원하며, "존재하지 않는" 복합 단위는 지원하지 않습니다:

```
10m × 10m       | 100 m² // area, a supported unit type
3 kg × 3 liters | // Not "9 kg liters", this unit does not exist
```

곱셈을 통해 지원되는 단위를 생성할 수 없을 경우, Soulver는 암시적인 비율을 만듭니다:

```
$30 × 4 days | $120.00
// the above is interpreted as $30/day × 4 days
```

#### **사용자 지정 단위 생성**

Soulver의 Calculator > Custom Units 설정에서 추가 단위를 추가할 수 있습니다.

{% hint style="info" %}
사용자 지정 단위는 기존 단위를 기준으로 정의됩니다.

(아직) Soulver에 새로운 단위 카테고리를 추가할 수는 없습니다.
{% 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/units-and-conversions/units.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.
