1

I have strange problem in IE6: When I'm trying to display "cross of lorraine" - I actually get something like empty rectangle, it's bad displayed in ie6. How can I workaround this problem? Cross of lorraine: ☨

I don't like workaround with displaying image with it for IE6 only

Ok I've actually found: this - but for cross of lorraine (☨) does not working

source file: index.html:

<html>
<head>
    <meta content="text/html;charset=UTF-8" http-equiv="Content-Type" />
</head>
<body>
&#9768;
</body>
</html>
Community
  • 1
  • 1
lukastymo
  • 26,145
  • 14
  • 53
  • 66
  • 5
    add this little script to your website: http://code.google.com/p/ie6-upgrade-warning/ – Willem Feb 25 '11 at 15:23
  • @Willem you just saved me a lot of time implementing one of my own :) – Dan Hanly Feb 25 '11 at 15:33
  • 2
    @smas, Can you provide example code? Specifically I'd like to see the doctype and encoding for your page, and the markup surrounding the character. Also, what fontset is your page using? – KatieK Feb 25 '11 at 17:34
  • @KatieK I've attached, but it's nothing special – lukastymo Feb 25 '11 at 18:09
  • I am fairly sure this is a font issue. Does this work in other browsers on the same system? – Pekka Feb 25 '11 at 18:11
  • it works correctly in other browsers - only IE6 has the problem. I think similar that this is font problem and I was searching font which support this in IE6 (I tried Arial Unicode MS) but still don't work. – lukastymo Feb 25 '11 at 18:17

1 Answers1

1

IE6 cannot display all of the Unicode characters available. IE6 cannot display that one.

I've tried quite a few different encodings and fonts, all to no avail. Even Wikipedia cannot make IE6 display that character.

You will need to use a workaround such as an image or substitute character for IE6.

KatieK
  • 13,586
  • 17
  • 76
  • 90