"A" → binary — binary and text
core65, the anchor value
Answer
01000001
Why this example is worth doing
Capital A is 65, which is the one ASCII value worth memorising because everything else follows from it: the capitals run 65 to 90, the lowercase letters 97 to 122, and the gap between a letter's two cases is exactly 32 — a single bit. The page shows that bit, position five, and notes that toggling it is how case conversion is implemented, which turns a lookup table into one XOR.
Try your own input in the Binary ⇄ text / ASCII. Convert text to binary and back, byte by byte, with the full UTF-8 breakdown.
How the answer is reached
ASCII encoding of 1 character
ASCII: one byte per character, the high bit always zero.
| character | code point | decimal | hex | binary | template |
|---|---|---|---|---|---|
| A | U+0041 | 65 | 41 | 01000001 | 0xxxxxxx |
| count | value |
|---|---|
| bytes | 1 |
| code points | 1 |
| UTF-16 code units | 1 |