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


in reply to Re: Handling special characters in JSON (TFM)
in thread Handling special characters in JSON

That assumes a perl data structure as the source, which wasn't clearly (to me) the case. Anyway, I do:
JSON::to_json( ["\x{00e9}"], { 'ascii' => 1 } )
(with JSON using JSON::XS).
--
A math joke: r = | |csc(θ)|+|sec(θ)|-||csc(θ)|-|sec(θ)|| |
Online Fortune Cookie Search
Office Space merchandise

Replies are listed 'Best First'.
Re^3: Handling special characters in JSON (TFM)
by tye (Sage) on Dec 16, 2010 at 04:35 UTC
    That assumes a perl data structure as the source, which wasn't clearly (to me) the case.

    Oh. Well, if only there was a way to take JSON and turn it into a Perl data structure... q-:

    But "I wrote an ajax service in perl" sure sounds to me like something that is likely to be generating JSON from Perl data structures. :)

    - tye