-
perl 和 html
-
Awwwww…that’s nice.
- Something like this will work:
use CGI ":standard";
print header(-charset => 'utf-8'),
start_html(),
h1("\x{548c}"),
end_html();
- This should work too and is less confusing if you’re used to typing in Chinese:
use utf8;
use CGI ":standard";
print header(-charset => 'utf-8'),
start_html(),
h1("和"),
end_html();
-
-
[close]
Permanent link · http://querylog.com/q/perl+%E5%92%8C+html
Suggested HTML for linking:
Link preview: perl 和 html
-
02 October 2006
· Internet & computing
-
The page found by the original query:
Coloring perl code in HTML
|