Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webview doesnt show Æ Ø Å properly

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

Does anyone know what the problem might be ?

like image 260
Roskvist Avatar asked Feb 04 '23 00:02

Roskvist


1 Answers

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.

like image 122
EdoDodo Avatar answered Feb 05 '23 14:02

EdoDodo