Hex to Decimal tool convert hex string to decimal number. Many times we wants to convert hex to decimal that time we can use PHP provides inbuilt functions hexdec().We have to use this function that we can convert hex to decimal number.Many developers and programmers are using this tools in daily life.
There are two ways to convert a hex string to a binary number using built-in functions:
Use intval to convert the hexadecimal string to numeric binary, and then use strval to convert the numeric binary value to a decimal string:
$hexString = "18";Use base_convert to convert the hexadecimal string directly to an decimal string:
$hexString = "28";