Created
November 15, 2023 09:03
-
-
Save agniswarm/499ada430a2acd729a47cd319b7c1658 to your computer and use it in GitHub Desktop.
Ascii Table Alphabets - Medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CAPITAL ALPHABETS | POSITIONS | BINARY | SMALL ALPHABETS | POSITIONS | BINARY | |
---|---|---|---|---|---|---|
A | 65 | 1000001 | a | 97 | 1100001 | |
B | 66 | 1000010 | b | 98 | 1100010 | |
C | 67 | 1000011 | c | 99 | 1100011 | |
D | 68 | 1000100 | d | 100 | 1100100 | |
E | 69 | 1000101 | e | 101 | 1100101 | |
F | 70 | 1000110 | f | 102 | 1100110 | |
G | 71 | 1000111 | g | 103 | 1100111 | |
H | 72 | 1001000 | h | 104 | 1101000 | |
I | 73 | 1001001 | i | 105 | 1101001 | |
J | 74 | 1001010 | j | 106 | 1101010 | |
K | 75 | 1001011 | k | 107 | 1101011 | |
L | 76 | 1001100 | l | 108 | 1101100 | |
M | 77 | 1001101 | m | 109 | 1101101 | |
N | 78 | 1001110 | n | 110 | 1101110 | |
O | 79 | 1001111 | o | 111 | 1101111 | |
P | 80 | 1010000 | p | 112 | 1110000 | |
Q | 81 | 1010001 | q | 113 | 1110001 | |
R | 82 | 1010010 | r | 114 | 1110010 | |
S | 83 | 1010011 | s | 115 | 1110011 | |
T | 84 | 1010100 | t | 116 | 1110100 | |
U | 85 | 1010101 | u | 117 | 1110101 | |
V | 86 | 1010110 | v | 118 | 1110110 | |
W | 87 | 1010111 | w | 119 | 1110111 | |
X | 88 | 1011000 | x | 120 | 1111000 | |
Y | 89 | 1011001 | y | 121 | 1111001 | |
Z | 90 | 1011010 | z | 122 | 1111010 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment