Hexadecimal to Decimal Conversion Code in PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 | <html> <body> <p> Hexadecimal to Decimal Conversion Code in PHP </p> <?php echo "hexadecimale value ="; echo "48656c6c6f20576f726c6421<br>"; echo "after conversion <br>"; echo hex2bin("48656c6c6f20576f726c6421"); ?> </body> </html> |
Output
Hexadecimal to Decimal Conversion Code in PHP hexadecimale value =48656c6c6f20576f726c6421 |
Hexadecimal to Decimal Conversion Code in PHP with form Values Entered By User
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <html> <h3>PHP Program Code of Hexadecimal to Decimal Conversion </h3> </html> <html> <body> <form method="post"> Enter hexa Value:<br> <input type="text" name ="num1"><br> <input type="submit" name="submit"><br> </form> </body> </html> <?php if(isset($_POST['submit'])){ $hexa=$_POST['num1']; echo "The Value after Conversion <br>"; echo base_convert($hexa,16,10); ;}?> |
Output

Topic Covered
Hexadecimal to Decimal Conversion Code in PHP.