Converts native format character data to ASCII representation.
Category: | Character |
Alignment: | Left |
put x $ascii3.;
Value of
x |
Result1
|
---|---|
abc |
616263 |
ABC |
414243 |
(); |
28293B |
1The results are hexadecimal representations of ASCII codes for characters. Each two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one character. |