Forum Moderators: open
↴
...then you wouldn't need to save or serve your document as UTF-8? (Is that right?!)
Although this displays OK ("righwards arrow with corner downwards") for me in FF and Op, IE6 baulks and just displays a square block ...?
Penders...
↴
...thank you.
Additional information: I haven't even converted the file to UTF-8 yet (ANSI) but this works fine. IE displays a block, great, another reason to contrast and then move my visitors to competent browsers.
I used Character Map but I will not limit myself to what Microsoft deems worthwhile to support.
- John
p { font-family: MyFont, MyBiggerFont; } then if any character from <p> isn't in MyFont then it should drop down to MyBiggerFont and use that font for that character only. I don't believe IE implements this, which is why you need a Unicode complete font (or as close as possible) as your main font.
...I don't believe IE implements this, which is why you need a Unicode complete font...
Mmm, yes, this seems to be the case! So... you can get IE6 to display the correct character if you explicitly tell it to use a unicode font:
CSS:
.unicode {
font-family:"Lucida Sans Unicode",sans-serif;
} HTML:
<p>Blah blah <span class="unicode">↴</span> blah blah...</p>
...and this works OK in FF, Op and IE6 on my Windows machine (how standard is 'Lucida Sans Unicode'?) This maybe OK for the odd character, but could quickly become a chore if many - but then you'd be using UTF-8 throughout I guess?