Lines Matching refs:utf8
15 use utf8;
32 use utf8;
44 use utf8;
48 =encoding utf8
61 use utf8;
63 =encoding utf8
99 open my $json_fh, '<:utf8', 'MYMETA.json' or die $!;
103 no utf8; # leave the data below as bytes and let Encode sort it out
105 my $str = Encode::decode( 'utf8', "Danijel Tašov's" );
106 like( $json, qr/$str/, 'utf8 abstract' );
121 open my $man_fh, '<:utf8', $manfile or die "open $manfile: $!";
125 no utf8; # leave the data below as bytes and let Encode sort it out
127 my $str = Encode::decode( 'utf8', "文档" );
128 like( $man, qr/$str/, 'utf8 man-snippet' );