Hello it is possible to decode mysql binary string to normal human readable text? Example of mysql binary string: ŰNďéĄ>Çž\r7«Ó[ŇN`Ń{ Mysql is created like this one: `info` binary(20) NOT NULL,
This depends on how the data was formatted. You might be able to CAST(info as CHAR) to see if it's just a plain binary representation of the data, otherwise you'll need to figure out what kind of function was used to insert the binary data.
You would have to decode it in the same manner that it was encoded or encrypted. A binary string is completely meaningless unless you know how the data that is stored was created.