=head1 NAME
perlunicode - Unicode support in Perl
=head1 DESCRIPTION
=head2 Important Caveat
WARNING: The implementation of Unicode support in Perl is incomplete.
The following areas need further work.
=over
=item Input and Output Disciplines
There is currently no easy way to mark data read from a file or other
external source as being utf8. This will be one of the major areas of
focus in the near future.
=item Regular Expressions
The existing regular expression compiler does not produce polymorphic
opcodes. This means that the determination on whether to match Unicode
characters is made when the pattern is compiled, based on whether the
pattern contains Unicode characters, and not when the matching happens
at run time. This needs to be changed to adaptively match Unicode if
the string to be matched is Unicode.
=item C