▫️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