Prior to MySQL v5.5.3, MD5() returned a binary string.
By default, MySQL Workbench does not display binary strings (to avoid accidental misinterpretation); however, you can display binary string values ββin the output grids: View> Edit> Preferences> SQL Editor> Treat BINARY/VARBINARY as a non-binary character string.
Alternatively, either upgrade your MySQL server or transcode the result into a non-character set of characters:
SELECT CONVERT(MD5('test') USING utf8)
eggyal
source share