#!/usr/bin/perl use strict; use warnings; use utf8; use open ':std' => ':utf8'; use CGI qw( -utf8 ); my $cgi->new(); print($cgi->header('text/html; charset=utf-8')); print <<'__EOI__'; Demo

User Name:
Password:

__EOI__