PHP dechex( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The dechex() is a built-in function in PHP and is used to convert a given decimal number to an equivalent hexadecimal number. The word 'dechex' in the name of function stands for decimal to hexadecimal. The dechex() function works only with unsigned numbers. If the argument passed to it is negative then it will treat it as an unsigned number. The largest number that can be converted is 4294967295 in decimal resulting to "ffffffff". Syntax: string dechex($value) Parameters: This function accepts a single parameter $value. It is the decimal number you want to convert in hexadecimal representation. Return Value: It returns the hexadecimal string representation of number passed to it as argument. Examples: Input : dechex(10) Output : a Input : dechex(47) Output : 2f Input : dechex(4294967295) Output : ffffffff Below programs illustrate dechex() function in PHP: Passing 10 as a parameter: html <?php echo dechex(10); ?> Output: a Passing 47 as a parameter: html <?php echo dechex(47); ?> Output: 2f When the largest possible decimal number is passed as a parameter: html <?php echo dechex(4294967295); ?> Output: ffffffff Reference: https://www.php.net/manual/en/function.dechex.php Create Quiz Comment S Shubrodeep Banerjee Follow 0 Improve S Shubrodeep Banerjee Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like