isync has asked for the wisdom of the Perl Monks concerning the following question:
$string1 = "This is greek character 'y': μ"; $string2 = "Hello \x{263A}!\n"; print "Content-Type: text/html; charset=utf-8\n\n"; print "$string1 - $string2";
$string1 = "This is greek character 'y': μ"; print "Content-Type: text/html; charset=utf-8\n\n"; print "$string1 - $string2";
$string1 = "This is greek character 'y': μ"; $string2 = "Hello \x{263A}!\n"; print "Content-Type: text/html; charset=utf-8\n\n"; print "$string1 - $string2";
20070323 Janitored by Corion: Changed PRE to code tags, as per Writeup Formatting Tips
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Strange behaviour with utf8 and wide chars
by Errto (Vicar) on Mar 22, 2007 at 17:54 UTC | |
by isync (Hermit) on Mar 22, 2007 at 23:36 UTC | |
|
Re: Strange behaviour with utf8 and wide chars
by almut (Canon) on Mar 22, 2007 at 18:35 UTC | |
|
Re: Strange behaviour with utf8 and wide chars
by Burak (Chaplain) on Mar 22, 2007 at 18:40 UTC |