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.

Example

Convert hexadecimal values to ASCII characters:

 <span class="token php language-php"><span class="token delimiter important"><?php</span>
<span class="token keyword">echo</span> <span class="token function">hex2bin</span> <span class="token punctuation">(</span> <span class="token string double-quoted-string">"48656c6c6f20576f726c6421"</span> <span class="token punctuation">)</span> <span class="token punctuation">;</span>
<span class="token delimiter important">?></span></span>

Try it yourself

Similar Functions