6)
7)
8)
9)
10)
11)Data string
Example: The following escape commands encode the data “1234567890123” in RSS14 Linear type. Due to space limitation CR LF are not shown
Escape Sequence:
<ESC> ‘z’ ‘6’ <SOH> <EOT> <SOH> <NUL> <NUL> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’ ‘8’ ‘9’ ‘0’ ‘1’ ‘2’ ‘3’ Hexadecimal :
1b | 5a | 36 | 1 | 0d | 1 | 0 | 0 | 1 | 16 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 30 | 31 | 32 | 33 |
Decimal:
27 90 54 1 13 1 0 0 1 22 49 50 51 52 53 54 55 56 57 48 49 50 51
Expected Result (not to scale):
Example: The following escape commands encode the data “1234567890123” in RSS14 Truncated Linear type. Due to space limitation CR LF are not shown
Escape Sequence:
<ESC> ‘z’ ‘6’ <STX> <EOT> <SOH> <NUL> <NUL> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’ ‘8’ ‘9’ ‘0’ ‘1’ ‘2’ ‘3’ Hexadecimal :
1b | 5a | 36 | 2 | 0d | 1 | 0 | 0 | 1 | 16 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 30 | 31 | 32 | 33 |
Decimal:
27 90 54 2 13 1 0 0 1 22 49 50 51 52 53 54 55 56 57 48 49 50 51
Expected Result (not to scale):
Example: The following escape commands encode the data “1234567890123” in RSS14 Stacked Linear type. Due to space limitation CR LF are not shown
Escape Sequence:
<ESC> ‘z’ ‘6’ <ETX> <EOT> <SOH> <NUL> <NUL> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’ ‘8’ ‘9’ ‘0’ ‘1’ ‘2’ ‘3’ Hexadecimal :
1b | 5a | 36 | 3 | 0d | 1 | 0 | 0 | 1 | 16 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 30 | 31 | 32 | 33 |
Decimal:
17