i'm using that MySQL Query to format my wordpress post. It worked very well for characters like " and others, but not for "»". I made research to fix the problem, but i did not find a solution, also not here on stackoverflow.
When i execute this code nothing happend.
$query = "UPDATE wp_posts SET post_content = REPLACE(post_content, '»<br />', '»\n\n')";
I tried this
$query = "UPDATE wp_posts SET post_content = REPLACE(post_content, '\»<br />', '\»\n\n')";
and that
$query = "UPDATE wp_posts SET post_content = REPLACE(post_content, '»<br />', '»\n\n')";
It is not working.