<?php $hex = '0050'; echo base_convert($hex, 16, 2) . "\n"; $bin = sprintf("%016b", hexdec($hex)); echo implode(' ', str_split($bin, 4)) . "\n";
You have javascript disabled. You will not be able to edit any code.