PHP BASE CONVERT


<?php
$hexadecimal = 'a37334';
echo base_convert($hexadecimal, 16, 2);
?>

Literate Lentil