When you open a schematic for an ESP32 dev board or a 480V motor control center, the first hurdle is decoding the drafting language. The global electrical and electronic symbols chart is split primarily between two dominant standards: IEC 60617 (International Electrotechnical Commission, used globally and in most modern PCB design software) and ANSI/IEEE 315 (used heavily in US academia and legacy industrial prints). Mixing these up leads to misidentified polarized capacitors, miswired relays, and fried logic boards.
The Master Electrical and Electronic Symbols Chart
How to read this table: Unlike wire ampacity charts where you scan for a temperature rating column (e.g., 60°C vs 75°C THHN) to find your baseline, this symbol reference uses the Component column as your anchor. Scan the IEC and ANSI columns to identify the regional standard used on your specific schematic. The final column lists modifier marks—which function similarly to derating rows in wire tables by adjusting the base component's operational limits or environmental ratings.
| Component | IEC 60617 Symbol Description | ANSI/IEEE 315 Symbol Description | Common Modifier / Rating Mark |
|---|---|---|---|
| Resistor | Empty rectangle (inline) | Zigzag line | Diagonal arrow through symbol = Variable/Potentiometer |
| Capacitor (Non-Polarized) | Two parallel straight lines | Two parallel straight lines | Arrow crossing lines = Variable capacitor |
| Capacitor (Polarized) | One straight line, one curved line (+ on straight) | One straight line, one curved line (+ on straight) | Box around symbol = Hermetically sealed / high temp rating |
| Inductor / Coil | Series of half-circles (loops) | Series of half-circles (loops) | Straight line above loops = Magnetic core (iron/ferrite) |
| NPN Transistor | Circle with vertical bar, emitter arrow pointing OUT | No circle, vertical bar, emitter arrow pointing OUT | Thermal symbol (small box with 't°') = Temp-compensated |
| PNP Transistor | Circle with vertical bar, emitter arrow pointing IN | No circle, vertical bar, emitter arrow pointing IN | Arrows pointing away = Phototransistor (light-sensitive) |
| Circuit Breaker | Manual switch symbol with a 'box' trip mechanism | Manual switch symbol with a 'box' trip mechanism | Thermal/magnetic marks inside box dictate trip curve rating |
Which Column Applies and How Modifiers Alter the Base Value
Which standard column applies to your installation? If you are wiring a residential panel or building a DIY Arduino/ESP32 project using modules sourced from global marketplaces, you are operating in the IEC 60617 ecosystem. The rectangular resistor and the loop-style inductor are what you will see on the silkscreen and datasheets. If you are an electrical apprentice in the US working on commercial building prints, or dealing with legacy US military/aerospace schematics, the ANSI/IEEE 315 column (zigzag resistors, circle-enclosed transistors) is your governing standard.
How modifier marks and derating symbols alter the base value: In conductor sizing, derating rows reduce ampacity based on bundling and ambient heat. In schematics, modifier marks alter a component's base behavior or indicate specific environmental ratings. For example, a standard IEC circuit breaker symbol represents a generic overcurrent device. However, if the schematic adds a thermal element box (a small rectangle with a bimetallic strip line inside) to the breaker symbol, it 'derates' or modifies the base assumption: this is specifically a thermal-magnetic breaker with an inverse-time trip curve, not a simple magnetic-only instantaneous trip. Similarly, adding a dashed line connecting two separate relay contacts indicates a mechanical linkage—meaning both contacts change state simultaneously on the same coil, modifying the base assumption of independent switching.
What the Symbol Chart Cannot Tell You
A common trap for beginners is assuming the electrical and electronic symbols chart contains all the data needed to wire a circuit. It does not. The schematic symbol is purely a logical representation of function. Here is what the symbol chart explicitly cannot tell you:
- Physical Pinouts: An NPN transistor symbol shows the Base, Collector, and Emitter logically. It does not tell you if the physical TO-92 package is pin 1-2-3 as E-B-C (like the 2N3904) or B-C-E (like the BC547). You must cross-reference the manufacturer datasheet.
- Terminal Numbering: A standard IEC relay coil symbol is just a rectangle labeled 'K1'. It does not tell you that the coil pins are A1 and A2, and the NO/NC contacts are 13/14 and 21/22. That requires the terminal designation chart (often IEC 81346).
- Voltage and Current Ratings: A diode symbol tells you it allows current in one direction. It does not tell you if it is a 1N4148 (100V, 300mA signal diode) or a 1N4007 (1000V, 1A rectifier).
- Footprint Dimensions: The rectangular IEC resistor symbol looks identical whether the physical part is a 0402 SMD chip or a 5W wirewound power resistor.
Quick-Jump Reference: Most Queried Component Symbols
Bookmark this section for rapid lookup when you encounter ambiguous symbols on a workbench print or a GitHub hardware repository.
| Symbol Ambiguity | Visual Cue to Differentiate | Real-World Application |
|---|---|---|
| Ground vs Chassis vs Earth | Earth = 3 horizontal lines decreasing in width. Chassis = 3 diagonal lines under a horizontal bar. Signal Ground = Empty downward triangle. | Connecting a metal enclosure to Chassis ground prevents shock; connecting analog sensor returns to Signal ground prevents noise. |
| SPDT vs DPDT Switch | SPDT has one input line splitting to two outputs. DPDT shows two identical SPDT switches connected by a dashed mechanical linkage line. | DPDT is required for reversing DC motor polarity (H-bridge manual equivalent). |
| Zener vs Standard Diode | Standard diode has a straight cathode bar. Zener diode has a cathode bar with 'wings' or bends at the ends (resembling a Z). | Zeners are used in reverse-bias for voltage clamping (e.g., 5.1V Zener on ESP32 GPIO for overvoltage protection). |
| N-Channel vs P-Channel MOSFET | N-Channel has the source arrow pointing INWARD toward the channel. P-Channel has the source arrow pointing OUTWARD. (Circle indicates depletion mode). | N-Channel (e.g., IRLZ44N) is used for low-side switching. P-Channel (e.g., IRF9540) is used for high-side switching. |
Always verify the governing standard in the schematic's title block before cutting wire or soldering headers. When in doubt, trace the netlist in your CAD software rather than relying on visual memory of a symbol chart.






