I am working on a site where I need to generate URLs that contain non-ASCII characters but I am having a problem displaying some characters in the URL correctly in Safari. I want the characters to appear as they are written but Safari displays the %-encoded version instead - I am using Safari version 6.0.2.
For example, here's a link for the Spanish phrase "el día después". If you hover over or click on the link in Chrome, it displays the accented characters 'í' and 'é' correctly in the URL; however, Safari, for some reason, displays the %-encoded version of the character 'í'.
To generate the URL, the text is first encoded as UTF-8 and is then %-encoded, which I believe is the correct way for displaying non-ASCII characters in a URL.
However, if you look at this link to a post on the Chinese Stack Exchange, Safari does display the Chinese characters in the URL correctly.
Any ideas as to why Safari doesn't seem to display accented characters such as 'í' in URLs and how I can get around it?
header("Content-Type: text/html; charset=UTF-8");or in apache configAddDefaultCharset UTF-8– Esailija Nov 22 '12 at 13:40éis not urlencoded in safari, it is very likely that deceze's guess is correct. – Esailija Nov 22 '12 at 14:04