DATA FORMAT
Example:
The following strings define:
1.First Character Replacement: substitution in Code 39 barcodes of all occurrences of the 0 character with the 1 character.
2.Second Character Replacement: substitution in Code 39 barcodes of all occurrences of the A character with the B character.
first character | Code 39 | ASCII characters corresponding to |
| ASCII characters corresponding to |
replacement | the HEX value for character 0 |
| the HEX value for character 1 | |
|
| |||
i&0Qk + | i78k + | 30 | + | 31 |
i&0Qk | i78k |
|
|
|
For Code 39 codes containing the string "0123", the contents transmitted will be "1123".
second character | Code 39 | ASCII characters corresponding to |
| ASCII characters corresponding to |
replacement | the HEX value for character A |
| the HEX value for character B | |
|
| |||
i&0Tk + | i78k + | 41 | + | 42 |
i&0Tk | i78k |
|
|
|
For Code 39 codes containing the string "ABCD", the contents transmitted will be "BBCD".
55