How do I treat the elements of @ARGV as UTF-8 in Perl?
@ARGV
Currently I\'m using the following work-around ..
use Encode qw(decode encode);
Use Encode::Locale:
use Encode::Locale; decode_argv Encode::FB_CROAK;
This works, also on Win32, pretty OK for me.