Decimal:
27 90 54 9 12 1 0 0 1 22 49 50 51 52 53 54 55 56 57 48 49 50
Expected Result (not to scale):
Example: The following escape commands encode the data “1234567” in
Escape Sequence:
<ESC> ‘z’ ‘6’ <LF> <BEL> <SOH> <NUL> <NUL> <SOH> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’
Hexadecimal :
1b 5a 36 0a 7 1 0 0 1 16 31 32 33 34 35 36 37
Decimal:
27 90 54 10 7 1 0 0 1 22 49 50 51 52 53 54 55
Expected Result (not to scale):
Example: The following escape commands encode the data “123456789012” in UCC
Escape Sequence:
<ESC> ‘z’ ‘6’ <VT> <FF> <SOH> <NUL> <NUL> <SOH> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’ ‘8’ ‘9’ ‘0’ ‘1’ ‘2’
Hexadecimal :
1b | 5a | 36 | 0b | 0c | 1 | 0 | 0 | 1 | 16 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 30 | 31 | 32 |
Decimal:
27 90 54 11 12 1 0 0 1 22 49 50 51 52 53 54 55 56 57 48 49 50
Expected Result (not to scale):
Example: The following escape commands encode the data “123456789012” in UCC
Escape Sequence:
<ESC> ‘z’ ‘6’ <FF> <FF> <SOH> <NUL> <NUL> <SOH> <SYN> ‘1’ ‘2’ ‘3’ ‘4’ ‘5’ ‘6’ ‘7’ ‘8’ ‘9’ ‘0’ ‘1’ ‘2’
Hexadecimal :
1b 5a 36 0c 0c 1 0 0 1 16 31 32 33 34 35 36 37 38 39 30 31 32
20