# 通貨の換算

通貨換算を行うには、その通貨の3文字コードを使用し、`in` または `to` または `as` を使って換算します。

```
10 USD in EUR   | 8.88 EUR
20 GBP as AUD   | 36.29 AUD
1500 RUB to DKK | 110.07 DKK
```

Soulver は、最新の為替レートを毎時自動的にダウンロードします。レートの更新は、`Settings` > `Currencies` パネルから手動でトリガーできます。

### 過去の通貨換算

特定の過去の日付のレートを使用する過去の通貨換算を行うことができます。

<pre><code><strong>10 USD in EUR on March 20                | €8.37
</strong>1 BTC in USD one year ago | $10,230.82
</code></pre>

{% hint style="info" %}
過去の通貨レートは、実世界の通貨（1999年まで）とビットコイン（2013年まで）の両方で利用可能です。
{% endhint %}

### カスタムレートによる通貨換算

通貨換算に使用したいレートを手動で指定することもできます。

<pre><code><strong>50 EUR in USD at 1.05 USD/EUR            | $52.50
</strong>50 EUR in RUB @ 80 RUB/EUR | ₽4,000.00
</code></pre>

### **ドル記号 ($) を使用する通貨**

Soulver は、Mac の地域設定を尊重して、$ 記号に使用する通貨を決定します。

例えば、オーストラリアに住んでいる場合、$ はデフォルトの ("USD") ではなく "AUD" に関連付けられます。

以下の略語もサポートされています。

<table data-full-width="false"><thead><tr><th>記号</th><th>コード</th><th>通貨</th></tr></thead><tbody><tr><td>US$</td><td>USD</td><td>米ドル</td></tr><tr><td>NZ$</td><td>NZD</td><td>ニュージーランドドル</td></tr><tr><td>C$, CA$</td><td>CAD</td><td>カナダドル</td></tr><tr><td>A$, AU$</td><td>AUD</td><td>豪ドル</td></tr><tr><td>S$</td><td>SGD</td><td>シンガポールドル</td></tr><tr><td>NT$</td><td>TWD</td><td>台湾ドル</td></tr><tr><td>HK$</td><td>HKD</td><td>香港ドル</td></tr><tr><td>R$</td><td>BRL</td><td>ブラジルレアル</td></tr></tbody></table>

{% hint style="info" %}
すべての通貨の記号は、

`Settings > Calculator > Currency Symbols`

でカスタマイズできます。
{% 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/ja/rifarensu/units-and-conversions/currencies.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.
