On Fri, 20 Jul 2007, Werner Partner wrote:
I would like to write correct poloish letters, e.g. in the following page:
http://www.kairos-team.de/?lang=pl
There are such letters as ?, ?, ?, and so on.
I found these letter sin polish wikipedia, I looked at the source code, but
there is nothing to be seen, what I can do to make these letters.
The best way is to find the Unicode number of the character, either
- graphically and by name in the code charts
http://www.unicode.org/charts/
(most, if not all Polish will be in Latin-1 or Latin Extended A)
- only by name in the code table
http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
Once you have the number, e.g. 0119 for e with ogonek, you can write the
character in HTML as ę .
Cutting and pasting from text containing such characters will often work
but depends on many parameters, in particular on the character sets on the
way from the original text file to the final place in the web page (which,
in your case, is in code ISO-8859-1 and thus canot contain genuine Polish
characters except if coded as described above). The way described above
uses only ASCII characters and should therefore work everywhere.
--
Helmut Richter