Specifications

RFID Commands
^RZ
316
45541L-004 Rev. A ZPL II Programming Guide 9/15/06
Example 1 • On a tag that is not Gen 2, this example encodes 5A as the tag password.
^XA
^RZ5A^FS
^XZ
Example 2 • On a Gen 2 tag, this example encodes EPC data
112233445566778899001122 to the tag in Hex format, write protects the tags EPC
data with password 1234ABCD, and leaves the tag’s access password unlocked.
^XA
^RFW,H^FD112233445566778899001122^FS
^RZ1234ABCD,E,L^FS
^XZ
Example 3 • On a Gen 2 tag, this example encodes EPC data
112233445566778899001122 to the tag in Hex format, write protects the tags EPC
data with password 1234ABCD, and makes the tag’s access password unreadable.
^XA
^RFW,H^FD112233445566778899001122^FS
^RZ1234ABCD,E,L^FS
^RZ1234ABCD,A,L^FS
^XZ
The following code unprotects EPC data 112233445566778899001122 using the
password 1234ABCD, encodes EPC data newdata to the tag in ASCII format, and then
write protects the tag’s new EPC data. The access password and its lock state are not
changed, so the access password remains unreadable.
^XA
^RZ1234ABCD,E,U^FS
^RFW,A^FDnewdata^FS
^RZ1234ABCD,E,L^FS
^xz
Example 4 • On a Gen 2 tag, this example unlocks the locked access password from the
previous example.
^XA
^RZ1234ABCD,A,U^FS
^XZ