Your IP : 216.73.216.74


Current Path : /usr/share/doc/perl-JSON-Parse/examples/
Upload File :
Current File : //usr/share/doc/perl-JSON-Parse/examples/ebi.pl

#!/usr/bin/perl
use warnings;
use strict;
use JSON::Parse ':all';
# The scalar $ebi does not look like Unicode to Perl
no utf8;
my $ebi = '["海老"]';
my $p = parse_json ($ebi);
print utf8::is_utf8 ($p->[0]);
# Prints nothing.