Help for this page

Select Code to Download


  1. or download this
    print $cgi->header(-type=>'text/html', -charset=>'UTF-8');
    
  2. or download this
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    
  3. or download this
    use Encode qw( decode encode );
    
    ...
    my $latin_html_to_send = encode('iso-latin-1', $html_to_send);
    
    print($latin_html_to_send);