Answers for "hexadecimal to binary php"

PHP
1

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 "hexadecimal to binary php"

Browse Popular Code Answers by Language