The unit of measurement for electrical resistance is the ohm, represented by the uppercase Greek letter omega (Ω). On circuit schematics, the symbol used depends entirely on your regional standard: North America primarily uses the ANSI/IEEE zigzag line, while Europe and most of the international community use the IEC 60617 empty rectangle. Both symbols represent the exact same physical property—the opposition to current flow—but mixing them in a single design file can cause confusion during PCB layout and assembly.

Schematic Symbols and Unit Multipliers

Before diving into regional history, here is the definitive reference for how resistance is documented on schematics and how the base unit scales across different orders of magnitude. Reference these tables when reading datasheets or interpreting CAD files.

Standard Schematic Symbol Shape Primary Region Base Unit Unit Symbol
ANSI/IEEE 315 Zigzag Line (~~~~) North America, Japan Ohm Ω
IEC 60617 Empty Rectangle ( ▭ ) Europe, UK, International Ohm Ω
Variable (Both) Base symbol + Diagonal Arrow Global Ohm Ω

Because a single ohm is a very small amount of resistance in most modern electronic circuits, we rely on standard SI (International System of Units) prefixes. The National Institute of Standards and Technology (NIST) defines these multipliers, which are universally applied to the ohm.

Prefix Symbol Multiplier Example Notation Common Practical Use Case
Milli m 10⁻³ (0.001) 100 mΩ Current sense shunt resistors, PCB trace resistance
(Base) Ω 10⁰ (1) 470 Ω LED current limiting, I2C pull-up resistors
Kilo k 10³ (1,000) 10 kΩ Voltage dividers, GPIO pull-downs, audio circuits
Mega M 10⁶ (1,000,000) 1 MΩ Op-amp feedback loops, high-impedance sensor inputs
Giga G 10⁹ (1,000,000,000) 1 GΩ Electrometer inputs, insulation resistance testing

Regional Standards: ANSI vs. IEC vs. Old UK

A common point of confusion for hobbyists and trade students is conflating wiring codes with schematic symbols. The NEC (NFPA 70) strictly governs physical wire insulation colors, grounding, and ampacity in North American branch circuits, but it does not dictate schematic symbols. For schematic documentation, the split is between ANSI/IEEE and IEC.

The ANSI/IEEE Zigzag (North America)

Defined historically in ANSI Y32.2 and currently maintained under IEEE 315, the zigzag symbol originated from early 20th-century American drafting practices. The jagged line was meant to visually represent the "friction" or "bumpy road" that electrons encounter when passing through a carbon composition resistor. If you are using US-based CAD libraries in Altium or KiCad, this is the default symbol you will pull from the vault.

The IEC Rectangle (International)

The International Electrotechnical Commission (IEC) standardized the empty rectangle in the IEC 60617 standard. The rationale was simplicity and ease of drawing, especially in early computer-aided design systems where drawing a perfect zigzag required more vector nodes than a simple box. Today, the IEC rectangle is the dominant standard in Europe, the UK, Australia, and most international datasheets.

Old UK Standards (BS 3939)

Before fully harmonizing with the IEC, the UK used BS 3939. In older British schematics (pre-1990s), you might occasionally see a resistor depicted as a zigzag enclosed in a circle, or a simple rectangle with diagonal hatch marks. If you are reverse-engineering vintage British audio equipment or old industrial control panels, be prepared to see these legacy variants. Modern UK designs strictly follow the IEC 60617 empty rectangle.

Warning: Never mix ANSI and IEC symbols in the same schematic sheet. While the base resistor symbols are distinct, the IEC symbol for a capacitor (two parallel lines) can sometimes be visually confused with an ANSI switch or a poorly drawn IEC resistor if the drafting grid is misaligned. Stick to one library standard per project.

Rows People Get Wrong: SMD Codes and Faded Markings

While schematic symbols are standardized, the physical markings on the components themselves are where most bench mistakes happen. Through-hole resistors use color bands, but surface-mount devices (SMD) use printed numeric codes that are notoriously easy to misread.

Code Type Format Example Code Decoded Value The "Gotcha" (Why People Get It Wrong)
3-Digit SMD [Sig][Sig][Mult] 103 10 × 10³ = 10 kΩ Confusing the 3rd digit for a literal value instead of a multiplier (e.g., reading 103 as 103 ohms).
4-Digit SMD [Sig][Sig][Sig][Mult] 4702 470 × 10² = 47 kΩ Assuming 4-digit codes are always 1% tolerance; some older 5% parts use 4 digits for values under 100Ω.
EIA-96 (SMD) [2-Digit Code][Letter] 01C 100 × 10² = 10 kΩ Failing to look up the 2-digit code in the EIA-96 table (01 = 100, not 1) and misinterpreting the letter multiplier.
R-Decimal [Val]R[Val] 4R7 4.7 Ω Reading the 'R' as a typo or ignoring it, leading to a 47 ohm assumption instead of 4.7 ohms.

Safe Interpretation When Markings Are Faded or Missing

On older through-hole resistors, the color bands can fade due to heat exposure, or the epoxy body can darken, turning a red band into a muddy brown. When visual inspection fails, you must use a multimeter. However, never measure a resistor while it is fully soldered into a live or powered-down circuit without verifying the surrounding topology.

If you measure a resistor in-circuit, your multimeter will read the equivalent resistance of the entire parallel network connected to those nodes. A 10 kΩ resistor in parallel with a 10 kΩ IC input impedance will read as 5 kΩ on your meter, leading you to falsely conclude the resistor has drifted out of tolerance.

The Correct Bench Procedure:

  1. De-energize the circuit and discharge all large capacitors.
  2. Desolder one leg of the resistor from the PCB pad to isolate it from parallel circuit paths.
  3. Measure across the isolated component using the appropriate range on your DMM.
  4. If the reading is open (OL) or wildly outside the expected tolerance (e.g., a 1 kΩ 5% resistor reading 1.4 kΩ), the internal carbon film or metal oxide layer has cracked due to thermal stress, and the part must be replaced.

By understanding both the schematic symbols (ANSI vs. IEC) and the physical marking conventions (SMD codes vs. color bands), you eliminate the guesswork from circuit analysis and ensure your builds match the designer's exact intent.