An example
Bеселое Pождество will be in unicode format:
0x0042 0x0435 0x0441 0x0435 0x043B 0x043E 0x0435
0x0050 0x043E 0x0436 0x0434 0x0435 0x0441 0x0442 0x0432 0x043E
In html:
Bеселое Pождество
I'm missing something here. Because of the small caps in unicode, like 'p' that is written as
0x0040 in the unicode file, wich will be B in html, but this shows as an '@'. The correct decimal number is 0112, 0x0070.
In win32 you can get the unicode for each character in the charmap, they will be in hexadecimal format. You should change them to decimal, then surround the number withing
&#<character_number>; and that's it.
ISO_10646 table.