There is no ASCII character that represents a chevron. However, there are several characters in the Unicode character set that have chevrons:
* 0xAB and 0xBB are right and left double chevrons (these are in Latin-1). * U+27E8, U+27E9, U+27EA, U+27EB are various single and double chevrons.
Chat with our AI personalities
77
ASCII character array (including null-terminator): {'N','e','t','w','o','r','k','\0'} ASCII character codes (decimal): {78,101,116,119,111,114,107,0} ASCII character codes (octal): {4,7,1,4,5,3,5,0,7,3,5,5,7,3,4,4,6,5,4,0,0} ASCII character codes (hexadecimal): {4E,65,74,77,6F,72,6B,00} ASCII character codes (binary): {01001110,01100101,01110100,01110111,01101111,01110010,01101011,00000000} When treated as a 64-bit value, the ASCII-encoded word "Network" has the decimal value 5,649,049,363,925,854,976.
In C a character already is its ASCII value: char c= 'A'; printf ("%c is %d (0x%x hexa)\n", c, c, c);
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
acii value of 1 is 49 for a complete list check out: http://www.killersites.com/webDesignersHandbook/ascii_page2.htm