I have some strange characters showing up in a production database. The string I want to replace is \u00fc\u00be\u008c\u00a3\u00a4\u00bc.
This fails.
$column = str_replace('\u00fc\u00be\u008c\u00a3\u00a4\u00bc', "'", $column);
and this works.
$column = str_replace('ü¾Œ£¤¼',"'",$column) ;
What is the best way to replace unicode characters in a PHP string without copying in the decoded text?