Through jquery ajax function, i am retreving data from server. everything seems fine but some german character displaying as '?' , Can anyone suggest me how to resolve this problem.
$.ajax({
type: "GET",
cache: false,
dataType: "json",
contentType: "application/json; charset=iso-8859-1",
url: url,
async: true,
timeout: timeOut,
success: function (data, status)
{
if (status == "success")
{
displayHotelDetails(data);
}
}
});