I know a number of post is there for utf-8 encoding issue. but i'm getting fail to convert string into utf-8.
I have a string "beløp"
in php.
When i print this screen in i frame it printed "bel�p"
.
After that i tried - utf8_encode("beløp");
- now i got output - "bel�p"
.
Again i tried iconv("UTF-8", "ISO-8859-1", "beløp");
now i got output - "bel "
.
And finally i tried - utf8_encode(utf8_decode("beløp"));
now i got output - "bel?p"
.
Please let me know where i'm wrong and how i can fix it.?