code ascii O code example

Example 1: ascii code special characters

ASCII	SIGN	DESCRIPTION
32	 	        (Space)
33	    !	    (Exclamation mark)
34	    "   	(Quotation mark ; quotes)
35	    #   	(Number sign)
36	    $   	(Dollar sign)
37	    %   	(Percent sign)
38	    &   	(Ampersand)
39	    '   	(Apostrophe)
40	    (   	(round brackets or parentheses)
41	    )   	(round brackets or parentheses)
42	    *   	(Asterisk)
43	    +   	(Plus sign)
44	    ,   	(Comma)
45	    -   	(Hyphen)
46	    .   	(Dot , full stop)
47	    /   	(Slash)
48	    0   	(number zero)
58	    :   	(Colon)
59	    ;   	(Semicolon)
60	    <   	(Less-than sign)
61	    =   	(Equals sign)
62	    >   	(Greater-than sign ; Inequality) 
63	    ?   	(Question mark)
64	    @   	(At sign)
65	    A   	(Capital A)
92	    \   	(Backslash)
94	    ^   	(Caret or circumflex accent)
95	    _   	(underscore , understrike , underbar or low line)
97	    a   	(Lowercase  a )

Example 2: what is ascii code

ASCII stands for American Standard code for Information Interchange. 
ASCII character range is 0 to 255.
We can’t add more characters to the ASCII Character set. 
ASCII character set supports only English. That 13
is the reason, if we see C language we can write c language only in English 
we can’t write in other languages because it uses ASCII code

Tags:

Misc Example