I\'ve tried converting the text to or from utf8, which didn\'t seem to help.
I\'m getting:
\"It’s Getting the Best of Me\"
It sho
We had success going the other direction using this:
mb_convert_encoding($text, "HTML-ENTITIES", "ISO-8859-1");
Make sure your html header specifies utf8
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
That usually does the trick for me (obviously if the content IS utf8).
You don't need to convert to html entities if you set the content-type.