Thursday, September 4, 2025
HomeLanguagesPHP hexdec( ) Function

PHP hexdec( ) Function

Hexadecimal is a positional numeral system with a base of 16. It has sixteen distinct symbols, where the first nine symbols are 0–9 which represent values zero to nine, and the rest 6 symbols are A, B, C, D, E, F which represent values from ten to fifteen respectively. Since hexadecimal digit represents four binary digits, it allows a more human-friendly representation of binary-coded values and hence it is preferred over other number systems like binary and octal.

The hexdec() function in PHP converts a hexadecimal number to a decimal number.
The hexdec() function converts numbers that are too large to fit into the integer type, larger values are returned as a float in that case. If hexdec() encounters any non-hexadecimal characters, it ignores them.

Syntax:

hexdec($value)

Parameters: The hexdec() function accepts a single parameter $value. It is the hexadecimal number whose decimal equivalent you want to calculate.

Return Value: The hexdec() function in PHP returns the decimal equivalent of a hexadecimal number.

Examples:

Input : hexdec("5e")
Output : 94

Input : hexdec("a")
Output : 10

Input : hexdec("f1f1")
Output : 61937

Input : hexdec("abc451")
Output : 11256913

Below program illustrate the working of hexdec() in PHP:




<?php
  
echo hexdec("5e") . "\n";
echo hexdec("a") . "\n";
echo hexdec("f1f1") . "\n";
echo hexdec("abc451") . "\n";
  
?>


Output:

94
10
61937
11256913

Important points to note :

  • It converts a hexadecimal number to its decimal equivalent.
  • It returns the values as float if the numbers are too large to be returned as integer type .
  • The hexadecimal number system is one of the most popular and widely used number system these days.

Reference:
http://php.net/manual/en/function.hexdec.php

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6632 POSTS0 COMMENTS
Nicole Veronica
11800 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS