[YG Conlang Archives] > [romconlang group] > messages [Date Index] [Thread Index] >
> How do you set an UTF-8 locale?
Here is what I found in
man perluniintro
---
if your Perl script itself is encoded in UTF-8, you can use UTF-8 in your
identifier names, and in string and regular expression literals, by saying
"use utf8".
---
You can enable automatic UTF-8-ification of your standard file handles,
default "open()" layer, and @ARGV by using either the "-C" command line
switch or the "PERL_UNICODE" environment variable, see perlrun for the
documentation of the "-C" switch.
---
P.A.