7b. Regex character names
$_ = 'Café'; say 'Matched' if /\x{e9}/;
say 'Matched' if /\N{LATIN SMALL LETTER E WITH ACUTE}/;
- Reference: charnames
- Unicode Character Finder
$_ = 'Café'; say 'Matched' if /\x{e9}/;
say 'Matched' if /\N{LATIN SMALL LETTER E WITH ACUTE}/;