> For the complete documentation index, see [llms.txt](https://docs.ziomark.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ziomark.xyz/get-endpoints/hex-to-dec.md).

# Hex to Dec

### /hex-to-dec

Query Parameters:

* `hex` - The hexadecimal number to convert.

Example Request:

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

Example Response:

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