Best practice for handling UTF-8 when percent-encoding?
In my previous post I summarized the current state of Percent-encoding in Perl. One of my conclusions was that the perfect percent-encoding solution would automatically handle UTF-8 encoding, using logic like this:
utf8::encode $string if utf8::is_utf8 $string;
Respected Plack author miyagawa quickly responded in a response post