docs/en/sql-reference/sql-functions/string-functions/unhex.md
This function performs the opposite operation of hex().
It interprets each pair of hexadecimal digits in the input string as a number and converts it to the byte represented by the number. The return value is a binary string.
UNHEX(str);
str: the string to convert. The supported data type is VARCHAR. An empty string is returned if any of the following situations occur:
[0-9], [a-z], and [A-Z].Returns a value of the VARCHAR type.
mysql> select unhex('33');
+-------------+
| unhex('33') |
+-------------+
| 3 |
+-------------+
mysql> select unhex('6170706C65');
+---------------------+
| unhex('6170706C65') |
+---------------------+
| apple |
+---------------------+
mysql> select unhex('4142@');
+----------------+
| unhex('4142@') |
+----------------+
| |
+----------------+
1 row in set (0.01 sec)
UNHEX