I end up here while googling for the problem with not printable character. I use MySQL UTF-8
general_ci
and deal with polish language. For problematic strings I have to procced as follows:
text=text.replace('\xc2\xa0', ' ')
It is just fast workaround and you probablly should try something with right encoding setup.