tags:

views:

7

answers:

1

Is it possible to make json response with characters in french encoding? IE6 never invoke callback function to handle json response.

A: 

Yes it is possible. Otherwise a lot of site wouldn't work! :)

Just make sure the server send the data back in UTF-8 encoding.

For example in java it's:

response.setContentType("application/json;charset=UTF-8");
Thierry-Dimitri Roy