0

I'm sending print commands with ZPL II to our Zebra printer.

I need to print a barcode for this string:

3CDkionk>Jc

Right now my ZPL code is this:

^FT19,200^BY3^BCN,70,N,N,N,N^FD3CDkionk>Jc^FS

The last 3 characters (>JC) won't be encoded in the barcode. I think the problem is that > is a special character for Code 128 Barcodes in ZPL, as it is used to change the Subset.

Is there a way to escape it? Since the character is in the subset, I'm expecting to be able to use it somehow.

David Corsalini
  • 7,958
  • 8
  • 41
  • 66

1 Answers1

0

According to the ZPL manual, you should be able to use >0J to get a >J

CODE128 Characters

charlesbridge
  • 1,172
  • 10
  • 21