このような html.file と、次のようなヘブライ語名のローカル ファイルがあります: אב.html
それへのパーセントでエンコードされたリンクは、すべてのブラウザーで正常に機能しますが、IE では機能しません。IEはUTF-8ではなくISOに変換しているようです。
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/></head>
<body>
<p>
UTF-8 file name in URL
File name is in hebrew
<P>
אב.html
<P>
Percent encoded does not work in IE / works in all other browsers:
<P>
%D7%90%D7%91.html
<P>
<a href="%D7%90%D7%91.html">אב
</a>
<P>
Ampersand encoded works in all browsers
<P>
'& #1488'; & #1489 ; ' .html
<P>
<a href="אב.html">אב
</a>
</body></html>