My database contains the followind string and is set to utf8_general_ci:
"Allg%u00e4ustra%u00dfe 9".
When I echo the string in php with var_dump(), I get the string that is set in the database, what I want to see is
"Allgäustraße 9".
I have tried to find a method to convert the string to a UTF-8 string with umlauts, but wasn't successfull.
Has anyone got an idea on where to start?