我想在变量中存储瑞典语单词(Brännén)。但我无法将其存储在变量中。如何将其存储在变量中?我需要使用任何模块吗?
答案 0 :(得分:3)
使用UTF-8编码源代码,然后使用
use utf8; # Tell Perl source code is encoded using UTF-8
my $var = "Brännén";
如果您要输出它,则需要对其进行编码。
use open ':std', ':locale'; # Tell Perl to decode and encode IO.
print("$var\n");