Source Code:
(back to article)
<?php $hex_number = "1a"; // Convert the hexadecimal number to its decimal equivalent using the hexdec() function $decimal_number = hexdec($hex_number); // Output the decimal equivalent echo $decimal_number; ?>
Result:
Report an issue