dechex Decimal to hexadecimal &reftitle.description; stringdechex intnumber Returns a string containing a hexadecimal representation of the given unsigned number argument. The largest number that can be converted is PHP_INT_MAX * 2 + 1 (or -1): on 32-bit platforms, this will be 4294967295 in decimal, which results in dechex returning ffffffff. &reftitle.parameters; number The decimal value to convert. As PHP's integer type is signed, but dechex deals with unsigned integers, negative integers will be treated as though they were unsigned. &reftitle.returnvalues; Hexadecimal string representation of number. &reftitle.examples; <function>dechex</function> example ]]> &example.outputs; <function>dechex</function> example with large integers ]]> &example.outputs; &reftitle.seealso; hexdec decbin decoct base_convert