Help for this page

Select Code to Download


  1. 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)
    
  2. or download this
      DB<1> $str2='\\x{263}'                                              
    +          
    
    ...
      DB<4> print hex $str2                                               
    +          
    0
    
  3. or download this
    DB<6> $str3='\\\\\\\x{aF}'                                            
    +        
    
    ...
    0
    
  4. or download this
      DB<10> $str4='\x{aF}'                                               
    +          
    
    ...
    0
      DB<13> print hex 'aF'                                               
    +          
    175