http://bugzilla.spamassassin.org/show_bug.cgi?id=4621
------- Additional Comments From [EMAIL PROTECTED] 2005-10-11 16:05 -------
Tom, sorry, I messed up the copy and paste of the script and didn't notice until
I saw your reply.
This is a variation of the script that will give me one more bit of information:
use bytes;
use HTML::Entities;
$a = decode_entities("∂");
print "First string prints as '$a'\n";
print "First string hex is " . unpack("H*", $a) . "\n";
$a = pack('C0A*', $a);
print "Second string prints as '$a' hex is " . unpack("H*", $a) . "\n";
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.