Search code examples
barcodezebra-printerszplcode39

How to omit start/stop character in Code 39 barcode interpretation line?


Is there a way to omit the start/stop character in the interpretation line of a Code 39 barcode? Obviously the barcode itself should contain them.

        ||| |||| || | ||||
           *1234567890*       <-- How to remove * here?

Here's the ZPL string I am using:

^XA
^FO100,200^BY3
^B3N,N,100,Y,N
^FD1234567890^FS
^XZ

You can view the ZPL above in an online ZPL viewer here


Solution

  • A Simple way to do this would be to disable the printing of interpretation line

    then add in a ^A font line with your data to print your text

    ^XA
    ^FO100,200^BY3
    ^B3N,N,100,N,N
    ^FD1234567890^FS
    ^FT250,325
    ^ADN,18,20^FD1234567890^FS**
    ^XZ
    

    Sample can be found here Label