в интернете ничего конкретного...
Sergey M. 23.12.2003 16:18
/ 23.12.2003 16:20
Unicode.org:
http://www.unicode.org/iuc/iuc18/papers/a15.docUse the JavaScript escape() function to generate URLs so that non-ASCII characters will be correctly escaped. The escape() function behaves differently in Internet Explorer and Netscape. The escape() function in Internet Explorer generates UTF-16 escape in the form of %uXXXX where XXXX is the hexadecimal value of a UTF-16 character. The escape() function in Netscape generates UTF-8 escape sequence in the form of %XX where XX is the hexadecimal digit for the value of a UTF-8 bytes.
в ECMAscript похоже рекомендовано именно такое написание
http://www.devguru.com/Technologies/ecmascript/quickref/escape.htmlоднако Нетскейп сделал всё по-другому
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/toplev.html#1063743Питон поддерживает такое написание
http://www.python.org/doc/current/ref/strings.htmlПерл не поддерживал, его пожурили
http://www.faqchest.com/prgm/modpr-l/perl-03/perl-0301/perl-030110/perl03012809_13315.htmlвобщем, всё очень загадочно, хотя на "де-факто" возможно и потянет...