For the complete documentation index, see llms.txt. This page is also available as Markdown.

▫️Hex to Dec

Converts a hexadecimal number to decimal.

/hex-to-dec

Query Parameters:

  • hex - The hexadecimal number to convert.

Example Request:

/hex-to-dec?hex=ff

Example Response:

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

Last updated