I am trying to work out how to remove the character  from a mySQL database. It has been converted for me by someone else who hasn\'t done a great job.
table is ps_produ
CHAR(182) matches the character that is integer code 182.
So you can do this:
update ps_product_lang set description = replace(description, CHAR(182), '')
Documentation for CHAR() is here