Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    __DATA__
    ---
    x : ă
    
  2. or download this
    DB<1> p Dumper $dat
    $VAR1 = {
              'x' => '&#259;'
            };
    
  3. or download this
    DB<1> p Dumper $dat
    $VAR1 = {
              'x' => "\x{103}"
            };
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    {
       "x" : "&#259;"
    }