in reply to Pragma to handle unicode characters

I need, that every possible input and output to/from my script will treated as UTF-8.

Use the open pragma:

use open qw/ :std :utf8 /;

Replies are listed 'Best First'.
Re^2: Pragma to handle unicode characters
by almut (Canon) on Dec 22, 2008 at 06:06 UTC

    That still wouldn't handle "every possible input", such as @ARGV, file names, and - while we're at it - environment variables.