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