in reply to Re^2: HTML::Entities and Unicode quotes
in thread HTML::Entities and Unicode quotes

See perlrun#* C [_number/list_]* and open
use open # make these handles ':std', # STDIN/STDOUT/STDERR 'IO', # and any I open ':encoding(UTF-8)'; # use strict UTF-8
And don't use is_utf8 :) perlunitut: Unicode in Perl#What about the UTF-8 flag?

Replies are listed 'Best First'.
Re^4: HTML::Entities and Unicode quotes
by tod222 (Pilgrim) on Aug 23, 2011 at 03:54 UTC
    Excellent, thanks.