use Encode; use HTTP::Response; my $internal_html = my_html_generation_function(); my $enc_html = encode("iso-8859-1",$internal_html); #for the response object to manage in octets; my $response = HTTP::Response->parse($enc_html);