I have some strings being echoed from a MySQL DB and there are special HTML characters inside them and when it renders in Chrome I get the diamond question mark.
If I dump the array data in PHP I get:
"_value" => b"10-13”"
If I just echo the data I get "10-13question mark"
It appears it is a right double quote with the HTML code "”"
I have tried using preg_replace and it won't work. I have tried changing the meta charset and still nothing.
My goal is to just have it echo 10-13"
Is it a DB issue, HTML meta issue or just have PHP sanitize the quotes and change it?