using jquery to read the json string with special characters

using jquery to read the json string with special characters

Hi,

I have an Array of Objects , basically its json string as a variable named reqJsonObj,

Here when the data is encoded from server through java and received at client side i have used below methd of jquery.
var reqJsonObj = jQuery.parseJSON('<%=sJsonObject%>');

As a result i get the below format of data for display on the page,
[
{"Notes": "PA+Increment%3A+FeaR+%0A+PD1%3A++%0A+PD2%3A++%0A+PG%3A+NA+%0A+FG%3A+NA+%0A+EG%3A+EG943" ;
","state":"PREL","Handled":"no","Slogan1":"RAW","id":0},    --> Object1

 {"Notes": "RS+Data%3A+FeaR+%0A+PD1%3A++%0A+PD2%3A++%0A+PG%3A+NA+%0A+FG%3A+NA+%0A+EG%3A+EG943" ;
","state":"APPR","Handled":"yes","Slogan2":"MTS","id":1},   --> Object2

 {"Notes": "WP+Status%3A+FeaR+%0A+PD1%3A++%0A+PD2%3A++%0A+PG%3A+NA+%0A+FG%3A+NA+%0A+EG%3A+EG943" ;
","state":"PREL","Handled":"no","Slogan3":"RMF","id":2}      ---> Object3
]";

Please help me on how to decode the data and show the data same way as its sent from server.

It would greatly help me out in resolving  a crucial issue which i am struck with.

Thanks and Regards
Ranchos