Hi Tres,
I would just like to thank you for your help. I was able to successfully print the characters.
Here is what I did (in case somebody else encounters the same problem):
Save the html file as Unicode, set the html encoding meta data to UTF-8
Set the encoding for qz-print and the printer
qz.setEncoding("IBM852");
qz.append(chr(27) + chr(29) + chr(116) + chr(5));
And it worked.
I have just one last question more related to printers.
Is there usually a way to have different alignments in one line? The first string(e.g., product) aligned left and the second(e.g., price) aligned right.
What I do now is to fill the right amount of spaces between the two strings.
The same question goes for font sizes. Can I set only one size for the entire line?
Best regards,
Ales