ascii code

ASCII Table
Dec  = Decimal Value
Char = Character

'5' has the int value 53
if we write '5'-'0' it evaluates to 53-48, or the int 5
if we write char c = 'B'+32; then c stores 'b'


Dec  Char                           Dec  Char     Dec  Char     Dec  Char
---------                           ---------     ---------     ----------
  0  NUL (null)                      32  SPACE     64  @         96  `
  1  SOH (start of heading)          33  !         65  A         97  a
  2  STX (start of text)             34  "         66  B         98  b
  3  ETX (end of text)               35  #         67  C         99  c
  4  EOT (end of transmission)       36  $         68  D        100  d
  5  ENQ (enquiry)                   37  %         69  E        101  e
  6  ACK (acknowledge)               38  &         70  F        102  f
  7  BEL (bell)                      39  '         71  G        103  g
  8  BS  (backspace)                 40  (         72  H        104  h
  9  TAB (horizontal tab)            41  )         73  I        105  i
 10  LF  (NL line feed, new line)    42  *         74  J        106  j
 11  VT  (vertical tab)              43  +         75  K        107  k
 12  FF  (NP form feed, new page)    44  ,         76  L        108  l
 13  CR  (carriage return)           45  -         77  M        109  m
 14  SO  (shift out)                 46  .         78  N        110  n
 15  SI  (shift in)                  47  /         79  O        111  o
 16  DLE (data link escape)          48  0         80  P        112  p
 17  DC1 (device control 1)          49  1         81  Q        113  q
 18  DC2 (device control 2)          50  2         82  R        114  r
 19  DC3 (device control 3)          51  3         83  S        115  s
 20  DC4 (device control 4)          52  4         84  T        116  t
 21  NAK (negative acknowledge)      53  5         85  U        117  u
 22  SYN (synchronous idle)          54  6         86  V        118  v
 23  ETB (end of trans. block)       55  7         87  W        119  w
 24  CAN (cancel)                    56  8         88  X        120  x
 25  EM  (end of medium)             57  9         89  Y        121  y
 26  SUB (substitute)                58  :         90  Z        122  z
 27  ESC (escape)                    59  ;         91  [        123  {
 28  FS  (file separator)            60  <         92  \        124  |
 29  GS  (group separator)           61  =         93  ]        125  }
 30  RS  (record separator)          62  >         94  ^        126  ~
 31  US  (unit separator)            63  ?         95  _        127  DEL

4.33
9
Microenzo 75 points

                                    ASCII	SIGN	DESCRIPTION
32	 	        (Space)
33	    !	    (Exclamation mark)
34	    &quot;   	(Quotation mark ; quotes)
35	    #   	(Number sign)
36	    $   	(Dollar sign)
37	    %   	(Percent sign)
38	    &amp;   	(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	    &lt;   	(Less-than sign)
61	    =   	(Equals sign)
62	    &gt;   	(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 )

4.33 (9 Votes)
0
5
1

                                    Reference Ascii Table
Dec  Char                           Dec  Char     Dec  Char     Dec  Char
---------                           ---------     ---------     ----------
 0   NUL (null)                      32  SPACE     64  @         96  `
 1   SOH (start of heading)          33  !         65  A         97  a
 2   STX (start of text)             34  &quot;         66  B         98  b
 3   ETX (end of text)               35  #         67  C         99  c
 4   EOT (end of transmission)       36  $         68  D        100  d
 5   ENQ (enquiry)                   37  %         69  E        101  e
 6   ACK (acknowledge)               38  &amp;         70  F        102  f
 7   BEL (bell)                      39  '         71  G        103  g
 8   BS  (backspace)                 40  (         72  H        104  h
 9   TAB (horizontal tab)            41  )         73  I        105  i
10   LF  (NL line feed, new line)    42  *         74  J        106  j
11   VT  (vertical tab)              43  +         75  K        107  k
12   FF  (NP form feed, new page)    44  ,         76  L        108  l
13   CR  (carriage return)           45  -         77  M        109  m
14   SO  (shift out)                 46  .         78  N        110  n
15   SI  (shift in)                  47  /         79  O        111  o
16   DLE (data link escape)          48  0         80  P        112  p
17   DC1 (device control 1)          49  1         81  Q        113  q
18   DC2 (device control 2)          50  2         82  R        114  r
19   DC3 (device control 3)          51  3         83  S        115  s
20   DC4 (device control 4)          52  4         84  T        116  t
21   NAK (negative acknowledge)      53  5         85  U        117  u
22   SYN (synchronous idle)          54  6         86  V        118  v
23   ETB (end of trans. block)       55  7         87  W        119  w
24   CAN (cancel)                    56  8         88  X        120  x
25   EM  (end of medium)             57  9         89  Y        121  y
26   SUB (substitute)                58  :         90  Z        122  z
27   ESC (escape)                    59  ;         91  [        123  {
28   FS  (file separator)            60  &lt;         92  \        124  |
29   GS  (group separator)           61  =         93  ]        125  }
30   RS  (record separator)          62  &gt;         94  ^        126  ~
31   US  (unit separator)            63  ?         95  _        127  DEL

5 (1 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
@ ascii code &aring; ascii &oacute; ascii code ascii table A ascii english table table ascii* ascii code at &bull; ascii code special ascii characters &ndash; ascii code ascii &quot;a&quot; code ascii + ascii characters and codes @ code ascii ascii code &gt; &quot; character code ascii whatwhat is ascii code &lt; as ascii code - &lt; as ascii code ascii * ascii table block how to write ascii code ascii tablele ascii table commands ascii code for characters ASCII Table and Description of letter ascii table and description ascii codde ascii table chart asciin table ascii values of special characters ASCII code is a/an asicci table ascii code for @ ascii tablel letters ascii code for : ascii code table characters ascii codes special characters alt why we need ascii code all ascii codes asci table characters special characters with ascii values the ascii code ASCIII Letters Codes ascii table simple ascii code table ascii code table meaning ascii table meaning ascii char codes ascii table &egrave; table characters ascii ascii code numbers ascii code + how to reference the ascii code ascii table b asciiu table ASCII code stands for ASCII code is ascii = ascii code for description symbol ascii cod ascii table; full ascii code table ascii table &gt;&gt; ascii code table for character ascii value codes ascii special characters table define ASCII Code create ascii table ascii code for / ascii code of special character $ ascii code ascii of special characters ascii code letters &quot;`&quot; ascii code ` ascii code ascci code ascii code symbols ASCII code table PRogramer ascii characters codes ascii code for special characters 'A ascii value ascii code for checking for special symbols ascii code for ? ascii &quot;a&quot; code  ascii ascii code f&uuml;r i ascii value for special characters % ASCII Code at symbol ascii code What is ASCII code? all characters code ascii ascii table bit a code ascii ascii codes symbols ascii full table ASCII Code table to ascii table ' ascii code &quot; ascii code ascii symbole codes ascii programming language ascii code s ascii table with values special characters and symbols in ascii ascii table for char ascii for special characters code ascii &gt; ascii code for symbols special characters ascii ascii code characters i ascii code ascii table and characters ascii char code table what is an ascii code ascii table what comes before a # asci code ascii symbol codes ascii code of characters &Auml; in ascii ASCII Code $ Table ascii &agrave; cret code ascii code ascii O ascii code for all characters type &quot;/&quot; ascii code ( ascii table ascii-code.com * ascii code ascii value of special characters . ascii code ascii - ascii code for ! ascii table reference ascii a' ! asccii code ascii special characters how to use ascii codes ascii number table all asci code ascii in code how to code using ascii ascii table# ascii ! use of ascii code program use of ascii code A-a ascii asciiart table ascii valu tables ascii codes for special characters table asci ascii ode # ascii code what is ascii code asciin code ascii a code &lt; code ascii = ascii code ascii code for A and a character table ascii ascii code special table code ascii ' en code ascii ascii code special characters Table - ascii ascii values tables ascii table ! ascii table english characters ascii value o A simple ascii table asciii character table asci value table ascii table x a' - 'a' ascii ascii-table.com ascii table of characters code ascii table ascii value a ascii table] asscii table show ascii table asciidoc table asciic table ascii table tab character asci chars table ascii table . ascii table basic ascii a value asccci table a' in ascii \a ascii the ascii table asci code table ascii table &quot;/&quot; ascii tabler entire ascii table ascaii table ancii table ascii tablehex use Ascii table ascii code for table ascii A and a ascii table ascii table letters ascii table \a Ascii value tables ascii tablec# A' ascii ascii tabl ASCII table Values how to use ascii table ASCI~I table asi table ascii ascii table ascii table p ascii table special characters ascii table' &auml; ascii ASCII characters table ascii table all symbols ASCII table\ ascii table symbols code ascii &agrave; full ascii table ascii table full table of ASCII how does ascii table work ascii table charCode chr(ascii) table acsii .ascii table ascii tav lookuptables.com ascii ascii char codes -site:pinterest.* ascii charactes ascii octal char value list letters in range asci ascii ' value ascii / ascii key code ascii of A ascii vallue ascii tables % ascii ascii table hex Assic table @ ascii value ascii values\ acssi table &curren; ascii ascii 2 table ASCII &quot; ; ascii position of a in ascii ascii table .mif keyascii table ascii table creator asci code of 20 ascicode table ascii table hexadecimal numbers ascii value s ascii ? ascii hexa table ascii koder hex &gt; in ascii ascii for '/' online ascii table ascii ascii table characters ascii char a to z in ascii [ ascii value acci table ascii list ascii table in hex ascii 106 ascii ttable ascii code for &quot; ascii letter ascii tablr ascii full chart ascii definition code ascii ascii table C ascii cart ascii table editor ascii for 'a' ascii table art a value ascii char -a-i asci value of a ascii value list . ascii ascii table visua ascii85 table ascii range what is ascii asc2 table ACSII chart numbers ascii decimal table assi table ascii tbale ascii l ascii chart numerics acscii table ascii byte table list of ascii codes ascii codes dfor A ascii table 4 ascii of 2 ascii char table ASSCI table ascii table online ASCII guide aalphabets ascii value alphabet ascii values basic ascii table code asci ascii table for characters ascii to char ascii tab;e ascii valuse ascii tabe; &quot; &quot; ascii value - ascii value aciss table asci key map ascii $ ascii to hex table ascii chars list ascii encoding list character code for + ascii tabl e ascii code values ascii table @ acssi chat ascii characterset ascii2 to char 32 ascii what is asci of hex 61 ansii table 0a en ascii asciii table ascii table numbers ascii2 table ascii value of d ascii character table ascii set hex tabe A ascii coded ASCI code ascii character code ascii of a\ ascii vaue 'a' ascii ascii code with hex table asii table ascii characters values ascii num - ascii characters list ascii character list ascii code for alphabets ASCII equivalent of A is ascii list ascii tabke ascci code A &permil; ascii ascii value of 'a' ascii 71 ! in ascii ascii valu acii table ascii numbers ascii code of &gt;&gt; ascii code of - ascii hex table ascll table ascii hex codes h ascii code ascii @ assqui code hexadecimal ascii table askii table hexadecimal ascii table\ acscii code ascii value of a character ASCII character chart ascii avlue of a and z abc char in table ascii code of a to z aski table \0 hex characters table ascii for ? ascii code aski table scII table asciidoc ascii symbols ascii for &gt; ascii value of ' ascii value ' 128 in ascii ascii value for char y character codes ascii ascii char code ascii table list acscii table list ascii char list ascci table ascii value of B and z all ascii characters ascii code of 11 ascii of alphabets - in ascii ascii to code ascii talbe ascii alphabet values ascii number of a A asci code ascii \a ascii code for numbers and alphabets ascii codes table ascii value of j ascii value for characters ascii value of small c character to ascii number S ascii code ascii code of alphabets ascii table all characters ascii 34 char to ascii to char ascii value for . alphabet for ascii value 100 asciii code charcode table ascuii table ascii character codes ACSII table \t ascii value ascii value of all characters ascii hex values ascii caracter x ascii value ascii letters a to z ascii representation of letters ascii value table ascii hcart ascii letter values Asvii table ascii of a to z $ ascii ascii chart table ascii value of - ascii a to z hex table ascii 32 char code 32 chart code ascii range of alphabets ascii of small a keycode ascii ascii map . ascii value keyboard ascii hex codes ascii hex character map ascii keycode ascii value of b character asccii table asci table aasci table ascii code table ascii characters to chars ascii key codes ascii character set char table ascii table - ascii character unicode accii table char ASCI ascii code chart ascii code A table ascii ascii tabel Ascii. ascii values big letters hex table ascii characters hex character codes extended ascii table character ascii a character ascii chars ascii letters to ascii char to ascii ascii code or a number for b ascii ascii values table S ascii alphabet ascii asci character ascii for characters ascii &auml; character ascii value what is the ascii code of caracther ascii binary digit table ascii 0 ascii aa ascii for letters ascii val of A char chart ascii of ascii letter codes b in ascii ascii values of e asccii table ascii value of c alphabet a ascii ascii for # a z ascii ascii value ascci value of s ascii of '''&quot; ascii value of a to z ascii ' ' ascii ascii code of m L ascii code ascii codes for letters { ASCII value b ascii value ascii codes ascii value of a-z ascii letters ascii values of characters ascii value of z ascii of l ascii characters H letter ascii ascii values characters ascii values B char code ascii value of &lt; ascii value of i ascii a ascii letters and numbers ascii a-A ascii value for A ascii char \x ascii chart ascii alphabet range ascii values for alphabets ascii value of m value of ascii codes ASCII OF S ascii \t a ascii ascii b letter ascii values a ascii code ascii value 104 character ~ ascii ascii value for alphabets ascii values a to z ASCII A a ascii . ascii ascii of t and w code letter ascii ascii value fo A ascii codes a aski value of a ascii of i ascii a\ ascii code value for alphabets ascii value of a and a the ascii code for a is ascii of 'A' ansii value of A ascii num for letter a ascii 'a' ascii G a in ascii value ascii code of char a ascii value of alphabeta ascii of a and A ascii for s D ASCII ascii a z ascii table for a letters asci code alphabets ascii value ascii value of o and y ascii letters values ASCii valued for each letter Ascii D ascii number for a alphabets in ascii value value in ascii value of a in ascii asci value of a ascii of , what is an a in ascii a key ascii ascii w w ascii ascii code of a ascii valuee of A alphabest in ascii ascii code for a w\ ascii ascii valuue 0f y letter a in ascii asci for letters alphabets ascii values what is a in ascii ascii alphabet ascii of aa ascii of numbers range 65 ascii value of alphabets o ascii value ascii for A h ascii ascii values of alphabets What is the ASCII value for the character &lsquo;A&rsquo;? ascii value for I character code for A j ascii value s ascii value h in ascii ascii letter a ascii for w S in ascii letters aski code ascii values for letters m ascii value Ascii value of S \n ascii value n ascii value ascii ode of A asci letters ascii code for o ascii values for alphabet ascii code of 'a' a' ascii value ascii table ascii for alphabets ascii code of { ACCII CODE FOR A W ascii numbers a in ascii a ascii value Z in ASCII code A in ASCII code ascii character code alphabets askii code for letters ascii code of W assci code from letter ascii code of cha ascii a
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source