Help for this page

Select Code to Download


  1. or download this
    my $s_orig = "\xE2\x98\xBB";
    
  2. or download this
    use Test::More tests => 1;
    
    ...
    my $data_got = decode_json($json_utf8);
    my $s_got = $data_got->[0];
    is($s_got, $s_orig);
    
  3. or download this
    use Test::More tests => 1;
    
    ...
    my $data_got = decode_json($json_utf8);
    my $s_got = $data_got->[0];
    is($s_got, $s_orig);