Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unicode characters and Internet Explorer

I just built a site that relies on certain Unicode characters like Ⓐ, but why doesn't Internet Explorer show these characters?

Is there some meta tag to get the browser to show it or how do you update Internet Explorer to handle these Unicode characters?

like image 622
user365071 Avatar asked Jun 12 '10 04:06

user365071


People also ask

Do all browsers support Unicode?

No browser supports all of Unicode, or is required to do so. The specifications do not require that all characters, or any specific subset thereof, will be displayed properly.

How do I enter Unicode characters?

Inserting Unicode characters To insert a Unicode character, type the character code, press ALT, and then press X. For example, to type a dollar symbol ($), type 0024, press ALT, and then press X. For more Unicode character codes, see Unicode character code charts by script.

Can Windows 10 use Unicode?

If you're working with Microsoft Word, WordPad, Outlook, or another Microsoft app, you can type in the Unicode value and then type Alt-X. You can also press the Control key plus a symbol, and then the letter you want to accent.

What is a Unicode character example?

Unicode supports more than a million code points, which are written with a "U" followed by a plus sign and the number in hex; for example, the word "Hello" is written U+0048 U+0065 U+006C U+006C U+006F (see hex chart).


2 Answers

Okay... here's the solution to your problem. You need to specify a Unicode font. E.g.

<p style="font-family: Arial Unicode MS;">&#9398;</p>

You've got to love IE... it will keep us all in business... forever.

like image 84
Gert Grenander Avatar answered Sep 22 '22 15:09

Gert Grenander


There are only 128 ASCII characters. You're probably talking about Unicode. Please read The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!).

Whether IE will play nice is another matter. Under the View->Encodings menu you can override the character encoding setting for a web page.

like image 42
Artelius Avatar answered Sep 19 '22 15:09

Artelius