49
Ascii value of 5 is 53.
The ascii value of zero - is 48.
The ASCII value for "C" is 67, for "c", 99.
\ is the character for 92 in ASCII.
acii value of 1 is 49 for a complete list check out: http://www.killersites.com/webDesignersHandbook/ascii_page2.htm
1 is an integral integer type with the numeric value 1. '1' is an integral character type with the numeric value 49. That is, ASCII character 49 returns the symbol '1'. To convert an ASCII character in the range '0' to '9' to its integral numeric value, subtract character '0' from the character. ASCII character '0' has the numeric value 48, thus '1' - '0' = 49 - 48 = 1. To convert a numeric value in the range 0 to 9 to its ASCII character equivalent, add character '0' to the value. Thus 1 + '0' = 1 + 48 = 49 = '1'.
deepak
The ASCII value of capital K is 75. For a small k it is 107.
If you look up the ASCII values for digits, you'll see that 0 = 48, 1 = 49... 9 = 57. So it's a simple matter of adding 48 to your digit to find out the ASCII value for it.
ASCII standardizes characters between 0 and 127.
There is no ASCII value of :-) ASCII encodes only single characters, assigning a numerical 0-127 value to each character. However, if you want the ASCII encoding of a smiley, here's some samples (using Hex values): :-) 0x3A2D29 :) 0x3A29
Digits have ASCII kód '0'..'9' = 48..57