Re: URL that contains non-ASCII characters
Posted By:
Thierry_Sourbier
Posted On:
Saturday, August 4, 2001 03:40 AM
To reference non-ASCII characters in a URI you must:
(1) Encode them with UTF-8
(2) Escape each byte of the UTF-8 sequence in the form %HH where HH is the exadecimal value.
for example www.jguru.com, assume that "jguru" are to be treated like some japanese characters, becomes www.%6A%67%75%72%75.com (try it it works :).
Thierry Sourbier
www.i18ngurus.com