AR Logo

The Physical Life of Binary

Every photograph you have ever taken, every message you have sent, every line of code you have written — all of it reduces to an incomprehensibly long sequence of 0s and 1s. You already know that.

But here is the question most people never ask: what is a 0? What is a 1?

They are not abstract symbols floating in a void. A bit is a physical thing. It has a shape. It occupies space. It takes energy to create, maintain, and destroy. And it looks completely different depending on where it lives.

This post is about that — the physical reality of binary.


What Is a Bit?

A bit is the smallest unit of information. It holds exactly one of two possible states: 0 or 1, on or off, yes or no. That is all it stores.

But to build anything useful, you need many bits working together. Eight bits form a byte, and a byte can represent 256 different values — enough to encode a single character of text.

The letter H, for example, is assigned the decimal value 72 in the ASCII standard. And 72 in binary is 01001000.

Type anything below and watch it decompose into raw binary:

Binary Converter
Binary output

01001000 01101001

H72
01001000
i105
01101001

Every character you type gets a number. Every number becomes a pattern of bits. And every bit, somewhere in your machine, becomes something physical.


Electricity: Where Bits Are Born

At the lowest level, a modern computer is an electrical machine. Bits are represented as voltage levels on copper conductors.

In the most common standard (TTL logic): a voltage near 5 volts represents a 1 (HIGH), and a voltage near 0 volts represents a 0 (LOW). That is the entire encoding. A wire is either energized or it is not.

Voltage Waveform
01001000 = "H"
5V0VHIGHLOWbit 70bit 61bit 50bit 40bit 31bit 20bit 10bit 00time
Toggle bits

Click any bit to flip it and watch the voltage waveform change.

These voltage transitions happen billions of times per second. A 3 GHz processor flips bits 3,000,000,000 times every second. Each flip is a tiny voltage swing on a microscopic wire inside the chip.


The Wire: How Bits Travel

When a bit needs to move — from keyboard to CPU, from CPU to RAM, from your machine to a server across the ocean — it has to change form.

On a copper wire, bits travel as electrical signals. The conductor carries a voltage pattern, and at the receiving end, a circuit reads that pattern back into discrete 0s and 1s.

The speed is extraordinary. Electrical signals in copper travel at roughly two-thirds the speed of light — about 200,000 kilometers per second. A bit can cross the length of a motherboard in under a nanosecond.

But copper has limits. Over long distances, the signal degrades (attenuation), and electromagnetic interference introduces noise. That is why we use different mediums for different distances.


RAM: Volatile Memory

When your computer is running a program, the data it is actively using lives in RAM (Random Access Memory). And RAM stores each bit as a charge on a microscopic capacitor.

A charged capacitor = 1. A discharged capacitor = 0.

The problem: capacitors leak. A fully charged RAM cell loses its charge in just a few milliseconds. That is why your computer's memory controller constantly refreshes every cell — re-reading and re-writing each bit thousands of times per second, just to keep it alive.

This is what makes RAM volatile. Cut the power, and every capacitor drains. Every bit vanishes. Your unsaved document is gone.


The Hard Drive: Magnetic Memory

Before SSDs took over, nearly every computer stored permanent data on a hard disk drive (HDD). An HDD stores bits as magnetic domains on a thin film coating a spinning aluminum or glass platter.

Each tiny region of the platter surface is magnetized in one of two directions. One polarity = 1. The other = 0. A read/write head floats nanometers above the spinning surface, sensing and flipping these magnetic orientations.

The key advantage: magnetization persists without power. A hard drive sitting unpowered on a shelf will retain its data for years, because magnetic domains do not spontaneously flip (under normal conditions).

The trade-off: the head has to physically move to the right track, and the platter has to rotate to the right sector. This mechanical latency is why HDDs are orders of magnitude slower than solid-state storage.


Flash and SSDs: Trapped Electrons

Modern computers use solid-state drives (SSDs) based on NAND flash memory. Flash stores bits using floating-gate transistors — a type of transistor with an extra, electrically isolated gate.

To write a 1, a high voltage forces electrons through a thin oxide layer and into the floating gate, where they become trapped. To read, the circuit checks whether the trapped electrons are blocking current flow.

No moving parts. No spinning platters. No magnetic heads. Just electrons, trapped in a cage of silicon dioxide, persisting for years without power.

The catch: every write cycle slightly damages the oxide layer. After thousands of write-erase cycles (typically 3,000 to 100,000 depending on the technology), a cell wears out. That is why SSDs have sophisticated wear-leveling algorithms that spread writes evenly across all cells.


Fiber Optics: Bits as Light

For long-distance communication — the backbone of the internet — bits travel as pulses of light through glass fiber.

A laser fires into one end of the fiber. Light on = 1. Light off = 0. The light bounces along the inside of the glass core via total internal reflection, traveling at roughly 200,000 km/s.

Fiber optic cables carry staggering bandwidth. A single modern fiber can transmit hundreds of terabits per second using wavelength-division multiplexing — sending different data streams on different colors of light simultaneously.

Unlike copper, fiber is immune to electromagnetic interference. And unlike wireless, it does not scatter or lose energy to the atmosphere. That is why nearly all intercontinental data travels through undersea fiber optic cables.


The Same Byte, Five Different Shapes

Here is the remarkable thing: the letter "H" — the byte 01001000 — looks completely different depending on where it lives. On a wire, it is a voltage pattern. In RAM, it is a row of charged capacitors. On a hard drive, it is a sequence of magnetic domains. In an SSD, it is trapped electrons. In a fiber cable, it is pulses of light.

The information is identical. The physical reality is completely different.

Storage Medium Comparison
01001000 = "H"
5V0V01001000
Edit the byte

The Full Journey

Every time you press a key, a byte is created as an electrical signal, routed through copper traces, stored in capacitor charges, and eventually written to trapped electrons for permanent keeping. If that byte travels over a network, it may also take the form of light.

The Journey of a Byte
Keyboard

A physical key press closes a circuit. A scan code (binary number) is sent to the keyboard controller.

Electrical signal (switch closure)
Data Bus

The binary scan code travels as electrical voltage pulses across parallel copper traces on the motherboard.

Voltage levels on parallel wires
CPU
CPU Register

The processor stores the byte in a register — a tiny set of flip-flop circuits made of transistors that hold charge.

Transistor flip-flop states
RAM

The CPU writes the byte to main memory. Each bit becomes a charged (1) or discharged (0) capacitor.

Capacitor charges (volatile)
Storage (SSD)

When saved, bits become electrons trapped in floating-gate transistors — persisting without power.

Trapped electrons (non-volatile)
The same byte, different physical forms
01001000

Why This Matters

Understanding the physical layer is not just academic curiosity. It explains:

  • Why RAM is fast but volatile — reading a capacitor charge is quick, but the charge leaks
  • Why SSDs are faster than HDDs — no mechanical parts means no seek time
  • Why fiber optics dominate long-distance networking — light in glass beats electricity in copper for bandwidth and distance
  • Why your computer gets warm — every bit flip is a tiny voltage change, and billions per second generate real heat
  • Why power outages destroy unsaved work — RAM capacitors drain in milliseconds

The next time you save a file, remember: you are not placing an abstract symbol somewhere in a digital void. You are physically trapping electrons in silicon, magnetizing metal, or sending photons through glass. The digital world is made of atoms.