this is the answer of SUNMI manufacturer
The easiest way is to use our print pick-up printText, you can call printing directly PrintText ("$ ¥ € £ ₣ N", null) If it is a developer printed with the ESC instruction, it corresponds to the different currency symbols, printing special characters.
The character set is not necessarily the same. It is recommended to use the UTF-8 character we specified (the device default is GB18030), and the setting of the character set FAQ7; For example, still print $ ¥ € € £ ₣ These symbols:
Need to send the instruction byte [] data = new byte [] {0x1c, 0x26, 0x1c, 0x43, 0xff} Set the printer receive UTF-8 character encoding Then sends the corresponding symbol data "$ ¥ € £ ₣" .GetBytes ("UTF-8") which is:
Senddata (New Byte [] {0x1c, 0x26, 0x1c, 0x43, 0xff}, null Senddata ("$ ¥ € £ ₣" .GetBytes ("UTF-8")
i don't understand what printtext is, sorry but i'm self taught and it's hard for me to understand