How to convert hexa decimal to string and string to hexa decimal?
HEX and UNHEX are hexa decimal convertion methods of mysql.
HEX method used to convert each characters of the string to hexa decimal number.
UNHEX method used to convert each hexa decimal numbers to characters.
|
-- returns 476F64
SELECT HEX('God');
-- returns God, this means 0x prefix also used to represent hexadecimal values
SELECT 0x476F64;
-- or Use unhex. returns God
SELECT UNHEX(476F64);
|