hex2bin
Convert hexadecimal string to binary string
hex2bin()
function converts a string of hexadecimal values into ASCII characters.
Convert hexadecimal values to ASCII characters:
<?php echo hex2bin ( "48656c6c6f20576f726c6421" ) ; ?>
Try it yourself
hex2bin ( string )
parameter | describe |
---|---|
string | Required. Hexadecimal value to convert. |