I'm having trouble printing Chinese characters on receipt using RawPrinterHelper. I am able to print my receipt correctly using PrintDocument but only as XPS and txt.
The string is converted to a byte array which is sent to the RawPrinterHelper. The problem is that one chinese character is equal to 3 bytes. So when it is printed, its displays 3 random characters.
Ex: Chinese character is 大 when converted to byte is {229,164,167} and when printed: 大
The receipt printer that i use for printing is : EPSON TM-u220 and POSTECH RP76III
RawPrinterHelper
? – Tetsuya Yamamoto