2015/09/15

Perl and UTF-8

perl -CS -e 'print'

---

use utf8;

---

binmode STDOUT, ':encoding(UTF-8)';
binmode STDOUT, ':utf8';

---

use encoding 'utf-8';