# Conversione Unità

Usa `to` o `in` o `as` per convertire in un'unità specifica.

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

Oppure in alternativa:

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

{% hint style="success" %}
Come scorciatoia, puoi anche digitare due nomi di unità senza valori per vedere la conversione:

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

Soulver utilizza i simboli delle unità (piuttosto che il nome completo) nella colonna delle risposte.

Clicca con il pulsante destro del mouse su una risposta per vedere il nome completo dell'unità

![](/files/5fa1eqofqTrzuBdZBDbJ)

## Note sulle Unità

#### **Mescolare Unità e Numeri Puri**

Quando si mescolano numeri puri con unità, verrà utilizzata automaticamente l'unità più vicina. Questo è chiamato **assimilazione unità**.

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

#### **Aggiungere e Sottrarre Unità Miste**

Quando si eseguono calcoli con tipi di unità miste, **vince l'unità più grande**:

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

Quando le unità non condividono un'unità base comune, **vince l'ultima unità utilizzata:**

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

#### **Moltiplicare Unità**

Soulver supporta solo le unità che sono state predefinite nel suo motore matematico, non le unità composte che "non esistono":

```
10m × 10m       | 100 m² // area, un tipo di unità supportato
3 kg × 3 litri | // Non "9 kg litri", questa unità non esiste
```

Soulver creerà un tasso implicito quando un'unità supportata non può essere creata tramite moltiplicazione:

```
$30 × 4 giorni | $120.00
// il sopra è interpretato come $30/giorno × 4 giorni
```

#### **Creare Unità Personalizzate**

È possibile aggiungere unità aggiuntive a Soulver nelle impostazioni `Calculator > Custom Units`.

{% hint style="info" %}
Le unità personalizzate sono definite in termini di unità esistenti.

Non è possibile aggiungere nuove categorie di unità a Soulver (per ora).
{% 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/it/riferimento-sintassi/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.
