At 12:33 pm +0000 18/2/05, David Cantrell wrote:

First of all iso-8859-1 does not contain the Euro sign. The character set you probably intend is Windows-1252

No he doesn't, he wants iso-8859-15

I doubt it very much, but you seem to have inside information.

#!/usr/bin/perl -w
use Encode;
$euro = "\x{20ac}";
$mac = encode("MacRoman", $euro);
$cp1252 = encode("cp1252", $euro);
$latin9 = encode("iso-8859-15", $euro);
print "$mac $cp1252 $latin9";

Reply via email to