In a web application, I have to display a special unicode character, know as BLACK DIAMOND (U+25C6)
(see here for more details). Here is a sample : ◆
The font defined for the page is Arial, with size 13px.
Surprisingly, the character is rendered with a bigger size in IE6 vs other browsers (FF, Chrome, ...).
Is there any reason of this weird behavior and what is the solution to avoid this ?
This is because the specified character is missing from the font you specified. So the browser looks for a suitable font to use for that character so it can still display it. Different browsers pick different fonts, so you'll see it a little bit differently on each.
There isn't much in general you can do to avoid this because missing fonts are very common on the web and thus you cannot really rely on any font to be present on the user's machine. You can try mitigating it, though: