Hello, all Dillo developers ! As mentioned in HTML 4.01 spec what should be done when html renderer cannot display a symbol is up to renderer. Current code renders all characters with code 0..255 but skip all the others silently. I prefer lynx/links approach to this problem. If they should display symbol which cannot be displayed properly in current locale they render ascii-only representation of this symbol, e.g. "α" -> "a", "Χ" -> "X", "∗" -> "*". Included small patch does that for all entities mentioned in html.c and this table is much more compact than links' one and does not allow transliteration of foreign language as links does. I believe that this patch is a temporary solution for this problem and when dillo migrates on GTK2 and this problem will be solved mush more reliable and elegant way by using standard symbol fonts via fontsets. I should mention also that if your encodings is not ISO-8859-1 (Latin-1) then you should probably use Russian patch http://stuphead.asplinux.ru/dillo/index.html for localization. It shall be updated soon to translate entities to your encoding and show representations for others. Yours, Nikita