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($_), $_, $_)}' Here's a one liner that prints out a list of the character 0 - 127. Of course, this doesn't handle non-printable characters like ^M, ^J, etc. -- Brett http://www.chapelperilous.net/ ------------------------------------------------------------------------ blithwapping: Using anything BUT a hammer to hammer a nail into the wall, such as shoes, lamp bases, doorstops, etc. -- "Sniglets", Rich Hall & Friends -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]