in reply to [SOLVED] How do I convince my Perl script that UTF-8 from an HTML form really is UTF-8?

I think you might notice an improvement if you added this line above the print statement:
binmode STDOUT, ":utf8";
  • Comment on Re: How do I convince my Perl script that UTF-8 from an HTML form really is UTF-8?
  • Download Code

Replies are listed 'Best First'.
Re^2: How do I convince my Perl script that UTF-8 from an HTML form really is UTF-8?
by Cody Fendant (Hermit) on Mar 11, 2020 at 19:45 UTC

    I had done this but forgot to include it in the code snippet. It still didn't work, unfortunately.