ascii values

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.38
8
MehranJ 135 points

                                    a	097

4.38 (8 Votes)
0
4
6

                                    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

4 (7 Votes)
0
5
1
Upgrate 100 points

                                    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  &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 values of + what is ascii value for a ascii table explained asci value of - asci value of A asci value of &aring; ascii ascii table A ascii english table table ascii* ascii value for a is ascii &quot;a&quot; ascii code of A in what is ascii value of A ascii value means ascii value of ^ ^ ascii value list of ASCII value ascii value of - sign ascii value of idigits ascii table block ascii tablele ascii table commands ASCII Table and Description of letter ascii value of number ascii table and description ascii table chart asciin table asicci table ascii tablel letters ascii code table characters asci table characters what is the ascii value of 1 ascii table simple ascii code table ascii code table meaning ascii table meaning ascii table &egrave; table characters ascii ascii table b asciiu table what is the ascii value of i ascii table; full ascii code table ascii value * ascii table &gt;&gt; ascii code table for character ascii special characters table ascii value of ' ' create ascii table what is an ascii value What is the ASCII value of A? ASCII code table PRogramer ascii value . 'A ascii value ascii value of a Ascii value of all hat is the ASCII value of - hat is the ASCII value of A the ASCII value of A What is the ASCII value of - What is the ASCII value of -? ASCII value of A? ascii value of a number ascii value of ` ascii value for A,a and - and + ascii value of / what is ascii value of @ what is ascii vallue of @ ascii table bit ascii full table table to ascii table ? ascii value ascii value program ascii table with values ascii table for char what is value of 'A' in ascii ASCII value of &lsquo;A&rsquo; % ascii value ascii value of -1 ascii table and characters ascii char code table ascii table what comes before a &Auml; in ascii Table ascii &agrave; ascii values of a number ( ascii table ascii values A ascii of % ascii of a and a ascii table reference ascii a' what is ascii values ascii number table ascii table# A-a ascii asciiart table ascii valu tables , ascii value table asci ascii numbers list what is the ascii value of ? character table ascii ascii value of the a table code ascii what are ascii values Table - ascii ascii values tables ascii value of {} ascii table ! what are the ascii values ascii table english characters Ascii value of ; ascii value ascii value of * ascii value o A simple ascii table ascii code list asci value list asciii character table asci value of ' a and a ascii value ascii value of &sup1; asci value table ascii table x what ascii value is , a' - 'a' ascii ascii-table.com ascii value of 4 ascii table of characters code ascii table ascii values a and a ascii values for a ascii table] asscii table show ascii table ascii value of &quot;o&quot; asciidoc table asciic table ascii values list ascii table tab character asci chars table ascii table . the ascii code of a ascii table basic ascii value meaning asccci table What is the ASCII value for @ ascii value of characters ascii value of ? ascii values means ascii value of symbol ascii value of numbers ascii value for ? ascii value of &gt; a' in ascii \a ascii a value in ascii ascii value A how many ascii values are there the ascii table asci code table ascii of a ascii value of 'a' ascii table &quot;/&quot; ASCII value? ascii tabler entire ascii table ascaii table asci value of 1 is ancii table ascii value of a\ ascii tablehex use Ascii table ascii code for table ascii value of % ascii A and a ascii of &quot;A&quot; ascii table ASCII of A is ascii value of / ascii value ascii table \a Ascii value tables value of ascii A concept of ascii values ascii value of a character ascii tablec# A' ascii ascii value of '\' the ASCII value ascii value of &quot; ascii value of + and - ascii tabl ASCII table Values ascii of character A what is the ascii value of &quot; how to use ascii table ASCI~I table ascii value of + ascii value of . asi table ascii ascii table ascii value of ' ascii table p what is the value of &quot; &quot; in ascii ascii table special characters ascii value of { * ascii value ascii table' &auml; ascii ASCII characters table ascii valie of a 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 of a value of a in ascii ascii table charCode chr(ascii) ascii value of a and b ascii of z and A table acsii .ascii table ascii chart alphabet ascii tav A ascii number ascii code of 'A' lookuptables.com ascii ascii vaue of A ascii value list alphabets ascii char codes -site:pinterest.* ascii charactes ascii octal char value list letters in range asci ascii ' value ascii / What is the ASCII value of - ascii key code ascii value of 1 ascii vallue ascii tables % ascii ascii table hex Assic table z char ascii ascii values\ acssi table &curren; ascii ascii of 104 ascii 2 table ASCII &quot; ; ascii position of a in ascii ascii table .mif ascii value of k keyascii table ascii table creator ascci value of a assci value of 'a' and 'A' asci code of 20 ascicode table ascii table hexadecimal numbers ascii value s ascii ? ascii hexa table ascii koder hex ascii no for alphabets &gt; in ascii ascii for '/' ascii values for letters online ascii table ascii ascii table characters asscii value of A ascii char ascii value of $ ascii code a alphabet in ascii code ascii value of a nad A [ ascii value acci table ascii list ascii table in hex ascii value of english alphabets ascii 106 ascii ttable ascii code for &quot; ASCII Value of &quot;+&quot; ascii letter ascii tablr ascii value of alphabets in c ascii of character in c ascii full chart ascii value of + ascii code of a-z what is the ASCII code for J what is the ASCII code for J? ascii definition code ascii ascii cart ascii of p ascii value of 0 ascii for alphabets ascii table editor ascii value of '1' ascii for 'a' ascii table art char -a-i asci value of a ascii value list . ascii ascii table visua a value ascii ascii value of 3 ascii value of helo ascii85 table az ascii code . ascii value ascii range what is ascii asc2 table ACSII chart numbers ascii decimal table assi table J ascii character asci value of N an ascii value of a ascii value for r ascii tbale ascii l J ascii code ascii chart numerics acscii table What is the ASCII value of &lsquo;b&rsquo;? ascii byte table list of ascii codes ascii codes dfor A ascii table 4 ascii of 2 ascii cvalue of ascii value ofz ascii characters value for a-z ascii code od characters ascii char table ascii of a to z ascii values of letters and numbers ascii value z asscii value of a to z ASSCI table ascii table online ASCII guide ascii code for letter d aalphabets ascii value asci value of C letter a ascii value k ascii value ascii value of char basic ascii table code asci ascii binary ascii table of alphabets ascii code a and A ascii table for characters ascii tab;e ascii valuse ascii tabe; &quot; &quot; ascii value ascii value c acscii value of A aciss table asci key map ascii $ ascii value for&quot;&lt;&quot; ascii value of&lt; and&gt; ascii to hex table ascii chars list ascii encoding list character code for + ascii tabl e ascii code values ascii table @ acssi chat Ascii value od d ascii characterset What is the ASCII code for the C What is the ASCII code for the small letter c ascii value table ascii2 to char ascii code of s 32 ascii i ascii value what is asci of hex 61 ansii table 0a en ascii asciii table ascii table numbers ascii2 table char ascii value ascii character table ascii set ASCII letterx ascii character c hex tabe ascii values alphabets ASCII code for letters A ascii coded ASCI code ascii character code ascii of a\ ascii leters ascii vaue 'a' ascii ascii code with hex table asii table letters to ASCII codes ascii characters values - ascii value ascii num - character number for n ascii characters list ascii character list ascii code for alphabets ASCII equivalent of A is ascii list alphabats to ascii table ascii val of A ascii vlues for a-z z in ascii ascii tabke ascci code A &permil; ascii ascii 71 ! in ascii ascii valu ascii value of of small L acii table ascii numbers char number ascii table binary ascii code of &gt;&gt; java ascii ascii code of - ascii hex table ascii value if a and a ascll table alphabet to binary ascii hex codes ascii @ assqui code hexadecimal ascii table askii table hexadecimal ascii table\ acscii code ASCII character chart ascii avlue of a and z abc char in table ascii vaues aski table \0 hex characters table ascii for ? ascii of c ascii codes ascii code aski table scII table c character ascii code asciidoc ascii symbols ascii for &gt; ascii value ' 128 in ascii ascii value for char y character codes ascii ascii char code ascii to int 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 representation of e ascii alphabet values p ascii code ascii number of a A asci code char values ascii \a ascii code for numbers and alphabets alphabet numbers binary binary code chart for letters ascii value for characters ascii value of small c value of a in vscii character to ascii number asciii value of a ascii code of alphabets ascii table all characters ascii 34 character value java char to ascii to char ascii Q ascii value for . ascii with binary alphabet for ascii value 100 asciii code ascii of numbers charcode table ascuii table ascii values alphabets ascii list ascii character codes ACSII table what is the ascii value of a \t ascii value ascii value of all characters small z ascii value ascii hex values ascii caracter ascii of a-z highest ascii value character ascii letters a to z H to binary ascii representation of letters ascii hcart ascii letter values ascii of small z Asvii table $ ascii ascii chart table java character ascii value 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 keyboard ascii hex codes ascii hex character map ascii keycode ascii character from a to z character asccii table character ascii value java ascii value table for special characters asc value of a asci table aasci table ascii code table ascii characters to chars ascii to integer ascii key codes = ascii value ascii character set char table alfabet char table ascii table - ascii character unicode accii table char ASCI ascii code chart ascii char java table ascii ascii tabel Ascii. ascii table in c ascii values big letters hex table j ascii value ascii characters hex character codes ascii of ( extended ascii table character ascii a character ascii chars ascii letters to ascii ascii values of integers integer ascii values ascii code or a number for b ascii ascii values table S ascii ascii value of - ascii value of : asci character a to b asci character P ascii value ascii binary character table what is the ascii number for V what is the ascii number for D ascii for characters char a ascii value ascii &auml; ascii value of ')' ascii value of ) ascii binary digit table binary for letters ascii value for 'a' character ascii value 12 ascii java char values what is the ascii code of caracther ascii 0 ascii aa ascii for letters char a =56 ascii table java a in binary code char chart asciicode for letter K asciicode for letter F ascii of E in binary what letter is 115 in ascii ascii letter codes ascii key values 0 ascii value ascii code for a b c d char to int ascii ascii values of e ascii values of H asccii table ascii value range value char at java what is the ascii key value all the characters alphabet a ascii binary table of letters ascii for # alphabet ascii values in c ascci value of s a z ascii ascii of '''&quot; ascii table c ascii value of small d ascii character of a alphabet in binary ascii ' ' ascii ascii value for { ascii cod of c ascii value ' ' L ascii code ascii codes for letters { ASCII value binary for x ascii for a binary of A ascii value of &quot; &quot; small p ascii ascii values of characters ascii value of a and a char java value Acsii value of char char to ascii ascii of l ascii characters H c ascii chr value of ascii values of char ascii value of I t char code ascii values of alphabets ascii lettters letters in ascii ascii value of character characters ascii values B char code 112 ascii ascii value of &lt; ascii value of k and g ascii code s ascii code for w b ascii value in c n ascii character b to ascii ascii a ASCII value of BIRTH ascii code c ascii of y a to z in ascii ascii a-A ascii of f c characters in ascii ascii char \x ascii chart ascii value of 102 What is ascii value of A to Z? letters into ascii table ascii alphabet range ascii values for alphabets ascii code for s ascii code for j value of ascii codes ASCII OF S assci value of A and small a upper case H to ascii ascii for j o in ascii ascii value of # ascii va of I and H ascii code h ascii code for the character j is ascii code alphabet c characters ascii ascii a value ascii \t ascii code for c u ascii code d ascii code ascii value of r a ascii ascii b asci value of F ascii code for 'a' ascii to alphabet ascii value of \ asci value of G ascii value of o ascii value of l ascii value of e ascii for C ascii values from a to z char code of 'z' ascii value 104 character ascii value of ] ascii value asci value of a ~ ascii ascii value for alphabets ascci letters ASCII A a ascii value of a to b asci c of letter a ascii value of d ASCII values of a ascii characters in c in small alphabet ascii . ascii ascii of t and w ascii table letters ascii values of the characters code letter ascii a b c askki valu 108 in ascii 111 in ascii ascii value fo A letter to ascii number ascii value of t ascii value for a ascii values a to z ascii for e number ascii values value of character a asci letters ascii codes a e ascii value T ascii code aski value of a ascii of i ascii a\ g in ascii S ASCII CODE ascii code for x ascii values in c ascii code value for alphabets z ascii code p in ascii 100 ascii value the ascii code for z is the ascii code for a is ascii of 'A' ascii value of F f value in ascii ascii value of alphabeta ansii value of A ascii num for letter a letters ascii values ascii 'a' ascii G ascii value of h z in ascii value a in ascii value ascii code of char a &lt;a in code letter ascii values ascii for uppercase g y ascii value what is character code of h ascii for s N in ascii code D ASCII ASCII letters and numbers ascii letter code letter ord value j in ascii value alphabet char chode ascii value w ascii a z ascii code letters ascii of t a-z ascii ascii table for a letters asci code alphabets ascii value z ascii value ascii value of o and y ASCII value of z ascii numbers for alphabets ASCII vlaue of p ascii code for b sdvii code for b \x ascii code ascii code for O ascii code for t ascii code for n ascii code for i s en code ascii y ascii ascii letters values ASCii valued for each letter ascii code list for alphabets a - z ascii Ascii D @ ascii value ascii of g ascii for \t ascii number for a alphabets in ascii value value in ascii z value in ascii small z value in ascii small a value in ascii ascii value for a to z z in askii code ? ascii vale asci code v ascii value of J c ascii value ascii of , what is an a in ascii a key ascii ascii code for integers ascii value of s t in ascii ascci code lettters ascii w d in ascii w ascii ascii code of A-a char code for letters chart ascii c ascii valuee of A acssi value of x acssi value of s e in ascii alphabest in ascii ascii table abc assci value of small a 104 is acii code of which charracter t ascii value f ascii value x ascii value w\ ascii ascii valuue 0f y letter a in ascii asci for letters a to ascii ascii value of letters alphabets ascii values $ ascii value ascii of z ascii 104 anscii value of A ascii value of # in c h in ascii b ascii code letter to ascii ASC11-coded letter what is a in ascii ascii of aa ascii of numbers range 65 ascii value of p M ascii code o ascii value small a ascii s ascii value h ascii 108 is ascii code of c in ascii ascii value of X ascii value of b ascii value of g b ascii value alphabet to ascii n code ascii ascii alphabet What is the ASCII value of the character 'c'? ascii code of letters a to z char code What is the ASCII value for the character &lsquo;A&rsquo;? ascii values a - z ascii for z ascii value for I character code for A ascii numbe to letter ascii for P ascii value. a to z ascii char code for A ascii letter a ord value of z ascii for w ascii for h S in ascii ascii range of a to z ascii value of , ascii value of &quot;[&quot; ascii value of [ letters aski code char code c y in ascii b in ascii ascii code caputal a ascii values of all alphabets m ascii value a to z ascii value ascii code of f ascii a-z ascii character uppercase a a in ascii \n ascii value n ascii value ascii ode of A value character small a in ascii ascii values for alphabet letter ascii ascii values of A to Z ascii 108 ascii for alphabet character code for letters 108 ascii value ascii value of . a' ascii value c ascii character ascii value of alphabets ascii to char ascii val tochar ascii of h u ascii value ascii value of c and d ascii value of c ascii table ASCII value of @ ascii code of { letter character codes alphabet ascii alphabet ascii values ascii value of m x value in ascii ACCII CODE FOR A ascii code for small a to z ascii table for alphabets ascii characters f ASCII code for A ascii letters ascii value of y ascii value of v ascii code table alphabet ascii value of a-z 108 in ascii character 108, in ascii character W ascii numbers h ascii value w ascii value what is ascii value F in ascii ascii value of integers a ascii value ascii value of small a small a ascii value ascii value of 0 in c ascii value a ascii for a to z ascii table a to z ascii value of a to z Z in ASCII code A in ASCII code ascii dletters code ascii character code alphabets char code of small letter q a-z characters char codes ascii codes for english alphabets h ascii code string ascii value table askii code for letters ascii code of b ascii code of z ASCII Code for \n ascii code for alphabet ascii code range for alphabets all characters ascii code scii code for A char code of letters k in ascii code ascii code for a to z ascii code of W ascii code of a to z assci code from letter english letters ascii code ascii code of cha ascii codes for alphabets ascii codes table ascii code for D ascii a ascii code for a-z ascii code of small a what is the assci code of z ascii code for l f ascii code ascii code of e ascci code of j acscii code of a ascii code for W,X,Y,Z ascii code for e ascii code of a ASCII code for p ascii code of alphabet code for character ascii a ascii code ascii code of small a to z w ascii code Ascii code doe a Ascii code of M ascii value of 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