# Dec to Hex

### /dec-to-hex

Query Parameters:

* `dec` - The decimal number to convert.

Example Request:

```
/dec-to-hex?dec=255
```

Example Response:

```
{
    "decimal": 255,
    "hexadecimal": "ff"
}
```
