Is there a way to specify Unicode character literals in MySQL?
I want to replace a Unicode character with an Ascii character, something like the following:
You can use the hex and unhex functions, e.g.:
unhex
update mytable set myfield = unhex(replace(hex(myfield),'C383','C3'))