78
Testing barcode:
Multiple characters C3 replacement: By setting, a number of defined characters in the data string can be
replaced by other defined characters. The maximum number of characters to replace is 11.
Example: Replace all the
“
A
”
character in a data string with
“
B
”
character; replace
“
C
”
with
“
D
”
; replace
“
E
”
with
“
F
”
.
Original code data
“
1 2 3 A 4 C 5 6 E 7 8
”
Output code data
“
1 2 3 B 4 D 5 6 F 7 8
”
Steps: scan the following barcodes in order. The ASCII value for
“
A
”
is 41, for
“
B
”
is 42, for
“
C
”
is 43, for
“
D
”
is
“
44
”
, for
“
E
”
is 45, and
for “
F
”
is 46.
Testing barcode: