Answers for "conversion bin hex php"

PHP
2

hex to bin php

$hexadecimal = 'afc758';

$binary = base_convert($hexadecimal, 16, 2);

echo $hexadecimal . ' -> binary value is: ' . $binary;
Posted by: Guest on December-17-2020

Code answers related to "conversion bin hex php"

Browse Popular Code Answers by Language