I have some content on a webpage which contains æ ø å, but my webview cant show them properly.

Does anyone know what the problem might be ?

link|improve this question

1  
Not an answer to your question, but seeing as you're a CS student, this is mandatory reading at some point: joelonsoftware.com/articles/Unicode.html – Pekka Nov 25 '10 at 10:29
3  
You should accept answers to your previous questions, so that anyone else who has the same question knows what the right answer was. People are more likely to answer if they know that you appreciate the time they've taken – Gareth Nov 25 '10 at 10:37
feedback

2 Answers

up vote 2 down vote accepted

In order to use UTF-8 characters inside an (X)HTML page you declare the encoding with this meta tag (in the head section of the page):

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

If that alone does not work you may be able to find more useful information here.

link|improve this answer
That did it :) thanks – Roskvist Nov 25 '10 at 12:19
I had a similar problem, where some Android phones would not display Swedish characters correctly in a site I'm developing. It did not work even though I used the HTML5 version of the meta tag above. When I added a default character-set in the htaccess file, it worked fine. – Adrian Schmidt Nov 30 '10 at 15:19
feedback

You need to ensure that the HTML file is saved as UTF-8 and that the Content-Type header in the HTTP response contains the proper charset. You can verify the headers by among others Firebug.

A <meta> tag for Content-Type would only work when the Content-Type header in the response is absent and this is usually not the case when the HTML file is served over HTTP. However, its presence is good for offline viewing and self-documentary purposes.

link|improve this answer
Thanks for that :) – Roskvist Nov 25 '10 at 12:19
So, you're viewing the page locally? – BalusC Nov 25 '10 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.