Show Output
PHP Convert a Decimal Number to Hexadecimal and Vice Versa
"; // 0utputs: ff echo dechex(196) . "
"; // 0utputs: c4 echo dechex(0) . "
"; // 0utputs: 0 // Convert hexadecimal to decimal echo hexdec('ff') . "
"; // 0utputs: 255 echo hexdec('c4') . "
"; // 0utputs: 196 echo hexdec(0) . "
"; // 0utputs: 0 ?>