▫️Dec to Hex

Converts a decimal number to hexadecimal.

/dec-to-hex

Query Parameters:

  • dec - The decimal number to convert.

Example Request:

/dec-to-hex?dec=255

Example Response:

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

Last updated