Forum Moderators: open
I would have said that you need to convert it to the 'real character' back in the PHP, instead of using the html entity ¾ ...?
You could try using the html_entity_decode() [uk.php.net] PHP function, like:
$text = 'example '.html_entity_decode('¾'); ...?