CS Summer Hub
01

My Name in Binary

Every character on a computer is stored as a number (ASCII), and every number is stored in binary. Type your name to see it as the computer sees it.

⌨️

Start typing to see your name in binary

What's going on here?

1️⃣

Characters → ASCII numbers

Every character has a code: 'A' = 65, 'a' = 97, '0' = 48. This is the ASCII standard, agreed in 1963 so computers could share text.

2️⃣

Numbers → 8-bit binary

Each ASCII code is converted to an 8-bit binary number (0–255 fits in 8 bits). 'A' (65) becomes 01000001.

3️⃣

8 bits = 1 byte

Each character uses 1 byte of storage in ASCII. Unicode can use 1–4 bytes per character to support 140,000+ characters from all the world's writing systems.