The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789101112 #!/usr/bin/env perluse strict;use 5.10.1;use autodie;use warnings qw[ FATAL all ];use open qw[ :std IO :utf8 ];END { close STDOUT }use Unicode::Normalize;print NFD($_) while <>;
#!/usr/bin/env perl
use
strict;
5.10.1;
autodie;
warnings
qw[ FATAL all ]
;
open
qw[ :std IO :utf8 ]
END {
close
STDOUT }
Unicode::Normalize;
print
NFD(
$_
)
while
<>;