How to print ⎓ on ZPL (zebra printer language) Unicode utf-8

1.2k Views Asked by At

i need to print ⎓ logo on Zebra Printer using ZPL (zebra programming language), can anybody tell me how to print the ⎓ symbol?

i already using code that use UTF-8 code, but it only work with 2 byte of hexadecimal, ⎓ has 3 hex data

^XA

^CI28
^FO60,75
^ASN,36,20^FH^FD_c3_ba^FS

^XZ

Thank you in advance!

1

There are 1 best solutions below

2
Mark Warren On

The utf-8 sequence for U+2393 is 0xE2 0x8E 0x93. Using your example, you would encode that as:

^ASN,36,20^FH^FD_e2_8e_93^FS

This assumes the font you have mapped to S supports that code point.