Re: Hexadecimal Dictionary

2002-02-05 Thread Randal L. Schwartz
> "Fred" == Fred Sahakian <[EMAIL PROTECTED]> writes: Fred> I know that %OD%OA is a carriage return, but I need to know what Fred> the code is for a quote mark (") as well as a few Fred> others..thanks! You don't need to know if you're using the right tools. Look into URI::Escape, found in

Re: Hexadecimal Dictionary

2002-02-05 Thread Jeremy Webster
http://www.neurophys.wisc.edu/www/comp/docs/ascii.html On Tuesday 05 February 2002 01:32 pm, Fred Sahakian wrote: > Anyone know of a good online Hexadecimal Dictionary? > > I know that %OD%OA is a carriage return, but I need to know what the code > is for a quote mark (") as well as a few others.

Re: Hexadecimal Dictionary

2002-02-05 Thread Brett W. McCoy
On Tue, 5 Feb 2002, Fred Sahakian wrote: > Anyone know of a good online Hexadecimal Dictionary? > > I know that %OD%OA is a carriage return, but I need to know what the > code is for a quote mark (") as well as a few others..thanks! perl -e 'foreach(0..127) {printf("%s: %x (%d)\n", chr($_), $_,

RE: Hexadecimal Dictionary

2002-02-05 Thread Hanson, Robert
I wrote this routine to do the conversion for me. When you run it at the command line is takes a string as input, and prints out the hex val of each char in the string. #!/usr/bin/perl # c2hex.pl - Converts characters to hex values. my $chars = join(' ',@ARGV); for ( split(//, $chars) ) { p