Of what?
2006-11-26 16:50:01
·
answer #1
·
answered by Lisa A 7
·
0⤊
2⤋
Have you ever tried to find a simple ASCII value table on the web? I did, and it wasn't easy! So I put this one together for myself. I thought others might find it useful too - so here it is.
--------------------------------------------------------------------------------
DEC HEX CHARACTER DEC HEX CHARACTER
------------------------------------------------
0 00 ctl@ NUL | 64 40 @
1 01 ctlA SOH | 65 41 A
2 02 ctlB STX | 66 42 B
3 03 ctlC ETX | 67 43 C
4 04 ctlD EOT | 68 44 D
5 05 ctlE ENQ | 69 45 E
6 06 ctlF ACK | 70 46 F
7 07 ctlG BELL | 71 47 G
8 08 ctlH BS | 72 48 H
9 09 ctlI HT | 73 49 I
10 0A ctlJ LF | 74 4A J
11 0B ctlK VT | 75 4B K
12 0C ctlL FF | 76 4C L
13 0D ctlM CR | 77 4D M
14 0E ctlN SO | 78 4E N
15 0F ctlO SI | 79 4F O
16 10 ctlP DLE | 80 50 P
17 11 ctlQ DC1 | 81 51 Q
18 12 ctlR DC2 | 82 52 R
19 13 ctlS DC3 | 83 53 S
20 14 ctlT DC4 | 84 54 T
21 15 ctlU NAK | 85 55 U
22 16 ctlV SYN | 86 56 V
23 17 ctlW ETB | 87 57 W
24 18 ctlX CAN | 88 58 X
25 19 ctlY EM | 89 59 Y
26 1A ctlZ SUB | 90 5A Z
27 1B ctl[ ESC | 91 5B [
28 1C ctl\ FS | 92 5C \
29 1D ctl] GS | 93 5D ]
30 1E ctl^ RS | 94 5E ^
31 1F ctl_ US | 95 5F _
32 20 Space | 96 60 `
33 21 ! | 97 61 a
34 22 " | 98 62 b
35 23 # | 99 63 c
36 24 $ | 100 64 d
37 25 % | 101 65 e
38 26 & | 102 66 f
39 27 ' | 103 67 g
40 28 ( | 104 68 h
41 29 ) | 105 69 i
42 2A * | 106 6A j
43 2B + | 107 6B k
44 2C , | 108 6C l
45 2D - | 109 6D m
46 2E . | 110 6E n
47 2F / | 111 6F o
48 30 0 | 112 70 p
49 31 1 | 113 71 q
50 32 2 | 114 72 r
51 33 3 | 115 73 s
52 34 4 | 116 74 t
53 35 5 | 117 75 u
54 36 6 | 118 76 v
55 37 7 | 119 77 w
56 38 8 | 120 78 x
57 39 9 | 121 79 y
58 3A : | 122 7A z
59 3B ; | 123 7B {
60 3C < | 124 7C |
61 3D = | 125 7D }
62 3E > | 126 7E ~
63 3F ? | 127 7F DEL
2006-11-27 02:29:13
·
answer #2
·
answered by Amit G 4
·
0⤊
1⤋
ASCII - American Standard Code for Information Interchange
Computers do not understand English. They understand only binary codes (that is streams of 0's and 1's). So when we want to use the computer to do deal with text having English characters we cannot expect the computer to understand it. So what we do is, we will change the alphabets to the binary language that computers understand. This is just like translation from one language to another.
The ASCII table gives the values to which each character has to be mapped. For eg, the lower case 'a' has an ASCII value of 97. This means the letter 'a' will be treated by the computer as the value 97.
(Now do not get confused as to how 97 is a binary stream. 97 is converted to it's binary form as 0110 0001)
Our texts do not contain just letters. They also include numbers and special characters. So these also are included in the ASCII code list.
Apart from ASCII, there is also the "extended ASCII" - which handles other language characters like those from Greek / Latin etc, apart from all characters supported by the standard ASCII set!
And I am not repeating the ASCII table. Others have already mentioned sources.
2006-11-27 01:18:33
·
answer #3
·
answered by Flashy V 2
·
1⤊
1⤋
The numerical value, or order, of an ASCII character. There are 128 standard ASCII characters, numbered from 0 to 127. Extended ASCII adds another 128 values and goes to 255. The numbers are typically represented in decimal or in hexadecimal
2006-11-27 03:06:15
·
answer #4
·
answered by mallikj2♠ 2
·
0⤊
0⤋
All the data in computers feeds in ascii value format i.e. 0 1
2006-11-30 02:31:57
·
answer #5
·
answered by DELHI BOY 1
·
0⤊
0⤋
ASCII stands for American Standard Code for Information Interchange.
Computers dont understand simple English which we speak or write. For this reason the data which we provide to the computer has to converted in the form of bits and bytes. Bits and bytes consists of 0 and 1.(8bits=1 byte) and Hexa-decimal nos.
The codes interchanges the value which you have typed or entered in ASCII values and passes to the computer. The computer in return passes bits and bytes value to us which is again interchanged to plain English by ascii code and returned back to us.
2006-11-28 06:08:04
·
answer #6
·
answered by gawde.nilesh 1
·
0⤊
0⤋
Here is a complete explanation of the ASCII code, including a table of the codes and the values.
2006-11-27 00:52:43
·
answer #7
·
answered by DadOnline 6
·
1⤊
0⤋
ASCII-American code for Information Interchange.
1)acode that represents letters, numerals, punctuation marks and control signals as seven bit groups. It is used as a standard code by the transmission of data. The values range from hex value 00 to hex value 7F.
2)American Standard Code for Information Interchange) -- This is the de facto world-wide standard for the code numbers used by computers to represent all the upper and lower-case Latin letters, numbers, punctuation, etc. There are 128 standard ASCII codes each of which can be represented by a 7 digit binary number: 0000000 through 1111111.
3) Pronounced AS-key
hope i too participate to clear ur doubt!!
2006-11-27 04:55:24
·
answer #8
·
answered by thamil 1
·
0⤊
1⤋
ASCII Value is a unique 8 bit number assigned to each characters. For e.g A - 65 , B - 66 ... 0 - 48 , 1 - 49
You can find more @ http://www.neurophys.wisc.edu/comp/docs/ascii.html
2006-11-27 01:32:23
·
answer #9
·
answered by Tamil 1
·
0⤊
1⤋
all letters and symbols have an ASCII number 0-255
2006-11-27 00:50:59
·
answer #10
·
answered by Anonymous
·
0⤊
1⤋
the value of ascii code is to generate other characters into 1s and 0s... that is how...
example, it is long write 00010000 instead of using character example A10B...
2006-11-27 00:52:24
·
answer #11
·
answered by aRnObIe 4
·
0⤊
1⤋