http://www.perlmonks.org?node_id=992524


in reply to Re: JSON::XS and unicode
in thread JSON::XS and unicode

I am using utf8::all which already takes care of turning on the different unicode parts.

The errors do not come from reading or writing a file. The error is caused by using decode_json() on a string which should work.

Replies are listed 'Best First'.
Re^3: JSON::XS and unicode
by chip (Curate) on Sep 08, 2012 at 21:01 UTC
    Thanks for the pointer to utf8::all, it'll be handy.

        -- Chip Salzenberg, Free-Floating Agent of Chaos

Re^3: JSON::XS and unicode
by philiprbrenan (Monk) on Sep 09, 2012 at 11:04 UTC

    Could you replace the characters in the input to JSON with a's one by one until the offending wide character disappears? We will then know exactly which input character is causing the problem. Thanks.