Help for this page

Select Code to Download


  1. or download this
    use CGI::Simple;
    my $q = CGI::Simple->new();
    print "Content-type: text/plain\n\n";
    print $q->param('text');
    
  2. or download this
    use Encode;
    print Encode::decode_utf8($q->param('text'))