HTML Special Characters like á, Á are getting converted to ? in Chrome & Mozilla. It works fine in IE.
When I use special character á in the search box of the site, there is a difference in url for both Chrome/Mozilla and IE. Special Character in the search query is converted as:
%E1
- in URL of Chrome/Mozilla, but in text field it is displayed as ?.
%26aacute%3B
- in URL of IE, textfield correctly show the special character á. This is correct.
Can somebody help to fix this issue.
Site uses encoding:
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
Thanks for your help.