vote up 10 vote down star
3

So, we've all seen ASCII tables and anyone can search for one. What what's the nicest one, the cleanest, most legible, most useful ASCII table you've come across.


(i.e.) Probably not the very first one on the Google search.

flag
10  
Programming related? Yes. Duplicate? No. Relevant? Yes. Trolling? No. Spamming? No. Violates wiki/blog/spirit of SO? No. – Peter Turner May 22 at 14:10
What if we re-worded it as, "what's the nicest ASCII table you've seen?" or, "What's the best-formatted ASCII table to use when you're programming?" – Curt Sampson May 23 at 9:20
1  
Why's this closed? – Chris S May 26 at 14:25
Let's vote to reopen this wiki! – Nathan Campos yesterday

closed as not a real question by altCognito, Luke, John Nolan, R. Bemrose, lothar May 22 at 17:09

8 Answers

vote up 18 vote down

alt text

I actually keep my old A Book On C book around just for its ASCII table near the back.

link|flag
1  
Does anyone else find the image unreadable? – mmyers May 22 at 14:19
The table is ok, though not great, but the asciitable.com site is rather dodgy looking. Is it fair to steal the image from them? (Or did they steal the images themselves anyway?) – Curt Sampson May 22 at 14:23
a bit small, but not unreadable. – sharth May 22 at 14:23
I assumed this was a joke answer, and a damned fine one. +1 – annakata May 22 at 14:37
? A joke answer? I dunno. Seemed like exactly what the question was asking for. What's the joke? – Beska May 22 at 14:42
show 2 more comments
vote up 3 vote down

ascii table in tex and pdf - 'njoy !

link|flag
This is without a doubt the best looking one, I'm not sure why the one at the top is on the top. – Peter Turner May 22 at 18:19
Probably because it's CP1252 rather than ISO-8859-1. – Curt Sampson May 23 at 4:36
vote up 5 vote down

http://www.asciitable.com

link|flag
all hail the one true asciitable – annakata May 22 at 14:37
vote up 2 vote down

http://images.google.com/images?q=ascii+table

link|flag
vote up 5 vote down

I guess you're not on a Unix system? "man ascii" has always given me one.

(Yes, since 1983 at least.)

link|flag
1  
man is slow. Just type ascii (packages.ubuntu.com/hardy/ascii). It's like tard's answer, but with a little more flair (not /much/ more, this is ascii). – Matthew Flaschen May 22 at 14:37
vote up 11 vote down

Protip:

for(unsigned char i = 0; i < 256; i++)
{
  printf("%i : %c \n", i, i);
}
link|flag
1  
+1 for an interesting response. – Tom May 22 at 14:22
2  
Soon, a perl-head will show up and demonstrate an equivalent code using only 8 characters. – tard May 22 at 14:27
Except ASCII is 7-bit... – Matthew Flaschen May 22 at 14:38
ASCII exists in both 7-bit AND 8-bit representations!! – Redbeard 0x0A May 22 at 15:12
Real pro tip: unsigned chars are always smaller than 256, so this will loop forever – Andomar yesterday
vote up 6 vote down

http://ascii-table.com/ gets my vote as perhaps the nicest site. It's subtle, laid back, and they tell you that DLE stands for "Data Link Escape."

And then they throw in the entire Unicode charset as well, with a search engine for it.

Too bad the paper-tape encoder didn't work for me. But then again, I've still got a BSD machine around, which unlike Linux, includes useful utilities:

$ /usr/games/ppt Hello, world.
___________
| o  o.   |
| oo  .o o|
| oo o.o  |
| oo o.o  |
| oo o.ooo|
|  o o.o  |
|  o  .   |
| ooo .ooo|
| oo o.ooo|
| ooo . o |
| oo o.o  |
| oo  .o  |
|  o o.oo |
___________
$
link|flag
That is awesome – Peter Turner May 22 at 14:39
Lol "useful utilities". Subtle. – tj111 Jul 14 at 19:07
vote up 2 vote down

Although ASCII tables are useful for C programmers, Unicode is probably more useful for the rest of the world. The code charts are in PDF, so not pastable here (copyright issues aside).

Jump page for text code charts

Unicode chart for ASCII (Basic Latin)

Unicode chart for ISO-88591-1 codepoints from 128 to 255 (Latin 1)

link|flag
+1; I have those hanging in my cube at work. Truly official, easy to read code charts that codify the ASCII standard as my reference. – sheepsimulator May 22 at 15:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.