https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28230 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen@gmail.com --- Comment #2 from Tomás Cohen Arazi <tomascohen@gmail.com> --- This works: use utf8; use Encode qw(encode encode_utf8); use Data::Dumper; use YAML::XS; binmode STDOUT, ':encoding(UTF-8)'; my $string = YAML::XS::Load(encode('UTF-8',"---\r\n hello: 'heÄllo'")); print STDOUT Dumper($string); $string = YAML::XS::Load(encode_utf8("---\r\n hello: 'heÄllo'")); print STDOUT Dumper($string); 1; -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.