http://www.perlmonks.org?node_id=1045703


in reply to triyng to built a module

Previous answers should get you to the point where your script runs, but you may then see a warning about printing wide characters. If this is the case, you can add the following to the top of your script to enable Unicode support:

use feature 'unicode_strings'; use open qw(:std :utf8); use utf8;