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


in reply to Re: Converting everything (MySql, perl, CGI, website) to UTF-8
in thread Converting everything (MySql, perl, CGI, website) to UTF-8

utf8 enables not only Unicode string constants, but also Unicode identifiers (variables, methods, subroutines, …).

If you use Unicode only in String constants (and only occasionally), then it is even possible to stay in ASCII and use charnames' \N{CHARNAME} sequences, so that e.g.
my $default_name = '\N{LATIN CAPITAL LETTER AE WITH MACRON}sop';

would be equivalent to your example. With Perl v5.16 or later, you don't even need to explicitly use charnames for these sequences.

This approach also avoids problems with several (mostly web) frontends of git (or other) repositories that don't handle Unicode well.