Help for this page

Select Code to Download


  1. or download this
      my(%h)=();
      _Char_8Bit(\%h);
      my($a)=$h{"a:"};
    
  2. or download this
    sub _Char_8Bit {
      my($hash)=@_;
    ...
      $$hash{"a:"} = "\xe4";   #   LATIN SMALL LETTER A WITH DIAERESIS
    ...
    }