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. Syntaxselect unhex(str); Parameter:str: hexadecimal value. Example 1Select unhex('6a61766174706f696e74'); Output: Example 2Select unhex('4d7953716c537472696e6746756e6374696f6e'); Output:
Next TopicMySQL String
|