Current Location: Home> Function Categories> hex2bin

hex2bin

Convert hexadecimal string to binary string
Name:hex2bin
Category:String
Programming Language:php
One-line Description:Converts a string of hexadecimal values ​​to ASCII characters.

Definition and usage

hex2bin() function converts a string of hexadecimal values ​​into ASCII characters.

Example

Convert hexadecimal values ​​to ASCII characters:

 <?php
echo hex2bin ( "48656c6c6f20576f726c6421" ) ;
?>

Try it yourself

grammar

 hex2bin ( string )
parameter describe
string Required. Hexadecimal value to convert.
Similar Functions