Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Charset UTF-8 doesn't work (stuck with these ?-marks)

Tags:

html

css

unicode

I have a Unicode problem... I´ve done this before but for now, I cannot understand why the Icelandic letters don´t show up - I have those question marks again

Here is the url (very plain and short html5) http://nicejob.is/new/

Everything I Google says: use the <meta charset="utf-8"> as I do.

Any suggestions?

like image 954
Ingþór Ingólfsson Avatar asked Apr 04 '11 00:04

Ingþór Ingólfsson


People also ask

How do I change my UTF-8 character set?

Click Tools, then select Web options. Go to the Encoding tab. In the dropdown for Save this document as: choose Unicode (UTF-8). Click Ok.

What characters are not allowed in UTF-8?

Yes. 0xC0, 0xC1, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF are invalid UTF-8 code units.

What does charset UTF-8 do in HTML?

The charset attribute specifies the character encoding for the HTML document. The HTML5 specification encourages web developers to use the UTF-8 character set, which covers almost all of the characters and symbols in the world!


1 Answers

Your page is already viewed as UTF-8. But your source code is not saved as UTF-8.

Please change the encoding of your source code file to UTF-8.

like image 178
Czechnology Avatar answered Sep 30 '22 06:09

Czechnology