If you’re outputting strings with certain characters in PHP you may find they’re showing as  to fix this make sure you’re setting the character encoding right by using the htmlentities function:
htmlentities("£123.45",ENT_QUOTES,"UTF-8")
This encodes the correct html entities for the values using UTF-8 encoding.