utf8-all icon indicating copy to clipboard operation
utf8-all copied to clipboard

turn on Unicode - all of it

Results 6 utf8-all issues
Sort by recently updated
recently updated
newest added

Linux Mint 20 Package: libutf8-all-perl Version: 0.024-1 ``` perl -Mutf8::all -sle 'print $v' -- -v=привет пÑÐ¸Ð²ÐµÑ ``` This does not work either: `perl -CASD -Mutf8 -Mv5.30 -sle 'print $v' --...

e.g. I am using the Path::Tiny module and that module uses `readdir` sub. Is there a way to make it to respect of utf8::all without modifying its source code? currently,...

* Add Support for converting ENV to UTF8. Issue #36 * Add POD for ENV changes * Restore %ENV after unimport --- This is the first PR on behalf of...

Split off from #21: We should handle %ENV, one of the remaining pain points with OS interaction

From http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/#6163129: String comparisons in Perl using eq, ne, lc, cmp, sort, &c&cc are always wrong. So instead of `@a = sort @b`, you need `@a = Unicode::Collate->new->sort(@b)`. Might as...

From http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/#6163129: Perl built-ins like printf and write do the wrong thing with Unicode data. You need to use the `Unicode::GCString` module for the former, and both that and also...