On Wed, 2002-09-18 at 09:35, Andre Berger wrote: > I have to mask a "&" in a URL (HTML 4.01 Transitional, text/html; > charset=utf-8) that pointing to a CGI script; "&" doesn't work. > You can mask special characters a la "%20" in HTML. What encoding is > this, and where can I find a listing?
The %xx is the hexadecimal representation of the ASCII character. Use man ascii to see the hex value of all ASCII characters. For &, it would be %26. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

