- or download this
\x{263A} [1,8] hex char (example shown: SMILEY)
\x{ 263A } Same, but shows optional blanks inside and
adjoining the braces
\x1b [2,8] restricted range hex char (example: ESC)
- or download this
DB<1> $str2='\\x{263}'
+
...
DB<4> print hex $str2
+
0
- or download this
DB<6> $str3='\\\\\\\x{aF}'
+
...
0
- or download this
DB<10> $str4='\x{aF}'
+
...
0
DB<13> print hex 'aF'
+
175