Tatsuhiko Miyagawa wrote:
  use Encode;
  use Encode::MIME::Header;
  decode("MIME-Header", $bytes);

to get the Unicode strings for these MIME encoded characters.

If you want to turn them into HTML entities, you can say:

  encode("ascii", decode("MIME-Header", $bytes), Encode::FB_HTMLCREF);

Wonderful, yes, that worked! Thanks VERY much. I'm slapping my forehead for failing to realize that this was MIME encoding-related.

:-)

/Neil

Reply via email to