in reply to [5.8.0 Note] A Sub Named Sigma

There is a possibility to write such programs without utf8-capable editor at all.
perldoc encoding from 5.8.0 perl gives an example:
# an alternate way, Filter use encoding "euc-jp", Filter=>1; use utf8; # now you can use kanji identifiers -- in euc-jp!
I tried using Russian locale, and it works! I was able to name identifiers using mentioned locale:
use encoding 'cp1251', Filter=>1; use utf8; my $ÿÿ="eqweq"; print $ÿÿ;

Courage, the Cowardly Dog