In web application,there is a HTML page with below encoding:
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="en" http-equiv="Content-language">
<meta content="text/html; charset=UTF-8" http-equiv="Content-type">
What actually happening is on this page I am trying to display a result of a soap request. In response of this soap-request I am getting following codes:
èéàùìçò
for the following characters:
èéàùìçò
and surprisingly on HTML page these characters are correctly displayed as below besides the page encoding is UTF-8:
èéàùìçò instead of �������
I am not able to understand how these codes can be correctly converted in UTF-8 format as these codes belong to ISO-8859-15.Any idea?