How to access special character font table

Hello,
please tell me how to print special characters from font table of my LCD display (AC-204AYA). It seems to have cyrillic fonts, but i cant print it, i try with:

print('[ch1047][ch1076][ch1088][ch1072][ch1089][ch1090][ch1080]');

but output is not correct.

Here is the datasheet:
http://home.comet.bg/datasheets/LCD/AC-204A.pdf
The font table is in 14 page
Thanks :slight_smile:

Have you tried printing them as hex?

abcde are 61 62 63 64 65...

[ch1047][ch1076][ch1088][ch1072][ch1089][ch1090][ch1080] are A4 E0 70 61 63 BF B8

I think you would do it like:
lcd.write(A4);
lcd.write(E0);

There might be an easier way though.

Mowcius