Indeed...

$ ./1.version.pl 
a is 5.026001
b is v5.26.1
version is v5
version is v5.26.1
c is ж
d is Ж
expressions matched
$ cat 1.version.pl 
#!/usr/bin/perl -w
use 5.011;
use Path::Tiny;
use POSIX qw(strftime);
use if $] ge '5.016', feature => 'fc';
use if $] lt '5.016', 'Unicode::CaseFold' => 'fc';
use utf8;
use open OUT => ':encoding(UTF-8)', ':std';

my $a = $];
say "a is $a";

my $b = $^V;
say "b is $b";

printf "version is v%d\n", $a;  # Perl's version
printf "version is v%vd\n", $b;  # Perl's version

my $c = "ж";
say "c is $c";

my $d = "Ж";
say "d is $d";

if (fc($c) eq fc($d)){
say "expressions matched";

} else {
    say "did not match";
}
__END__ 
$ 


In reply to Re^4: Perl version dependent code (updated) by Aldebaran
in thread Perl version dependent code by Wyrdweaver

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.