Help for this page

Select Code to Download


  1. or download this
    HTML::Entities::decode_entities_old($string)
    
  2. or download this
    my $string = "’";
    chop ( $string .= chr(0x1234)); 
    print "string: $string\n"; # &rsquo 
    decode_entities($string);
    
  3. or download this
    # at the top of the program
    binmode STDOUT, ":utf8";