I have the following code which I post a bunch of JSON data to an ASHX file where I will process this data. Somehow the JSON is encoded and I have no clue what encoded it.
 $.ajax({        
    url: '/save_objects_channels.ashx',
    data: jsonParams,
    contentType: 'application/json',
    dataType: 'json',                                
    success: function(data) {                                  
    },
    error: function (xhr, ajaxOptions, thrownError){
    },
    complete: function() {
    }
});
Here is my sample json that I posted (I generate this as string):
var jsonParams = '[ { objectID: 333, channelID: 3, supplierId: 2, checked: true },{ objectID: 444, channelID: 4, supplierId: 5, checked: true } ]';

 
     
     
    