C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL UNHEX() FunctionThe unhex() is a String function of MySQL. This function converts the hexadecimal value into a string. Syntax
 select unhex(str); Parameter:
 str: hexadecimal value. Example 1
Select unhex('6a61766174706f696e74');
Output:   Example 2
 
Select unhex('4d7953716c537472696e6746756e6374696f6e');
Output:   
Next TopicMySQL String
 |