# and it's uppercase is \x{178}, LATIN CAPITAL LETTER Y WITH DIAERESIS.
if (ord("A") == 193) { # EBCDIC
- ok("\U\x{DF}aB\x{149}cD" eq "\x{178}AB\x{2BC}NCD",
+ ok(uc("\x{DF}aB\x{149}cD") eq "\x{178}AB\x{2BC}NCD",
"multicharacter uppercase");
} elsif (ord("A") == 65) {
- ok("\U\x{DF}aB\x{149}cD" eq "SSAB\x{2BC}NCD",
+ ok(uc("\x{DF}aB\x{149}cD") eq "SSAB\x{2BC}NCD",
"multicharacter uppercase");
} else {
ok(0, "what is your encoding?");
# There are no single character -> multiple characters lowercase mappings.
if (ord("A") == 193) { # EBCDIC
- ok("\LaB\x{149}cD" eq "ab\x{149}cd",
+ ok(lc("aB\x{149}cD") eq "ab\x{149}cd",
"multicharacter lowercase");
} elsif (ord("A") == 65) {
- ok("\L\x{DF}aB\x{149}cD" eq "\x{DF}ab\x{149}cd",
+ ok(lc("\x{DF}aB\x{149}cD") eq "\x{DF}ab\x{149}cd",
"multicharacter lowercase");
} else {
ok(0, "what is your encoding?");