Help for this page

Select Code to Download


  1. or download this
    use Encode;
    print decode('utf8', "\xC3\xA5");
    
  2. or download this
    use Encode;
    $_='%C3%A5';
     s/%/\\x/g;
    eval { $_=$_};
    print decode('utf8', $_);