When reading or drafting schematics, the default MOSFET schematic symbols you will encounter are the N-channel and P-channel enhancement-mode devices drawn to IEEE/ANSI standards. The arrow always points in for N-channel and out for P-channel, and a broken gate line indicates enhancement mode (normally OFF). However, if you are reading European industrial prints or IEC-compliant documentation, you will instead see IEC 60617 rectangular logic-block symbols that look entirely different. Misinterpreting these symbols—especially regarding the internal body diode and depletion-mode defaults—leads to blown gate drivers and shorted power rails.

The Complete MOSFET Symbol Reference Table

Use this table as your primary bench reference. It maps the physical behavior of the silicon to the visual shorthand used in both major global standards.

MOSFET Type IEEE/ANSI Visual Cue IEC 60617 Visual Cue Default State (Vgs = 0V) Benchmark Part Example
N-Channel Enhancement Arrow points IN to channel; broken gate line Rectangle; Gate on left, Drain top, Source bottom; no inversion bubble on gate OFF (Open) IRLZ44N (Logic Level)
P-Channel Enhancement Arrow points OUT from channel; broken gate line; circle on gate Rectangle; inversion bubble on gate input OFF (Open) IRF9540 / Si2301 (SMD)
N-Channel Depletion Arrow points IN; solid continuous channel line Rectangle; no gate bubble; normally-on indicator logic ON (Conducting) LND150
P-Channel Depletion Arrow points OUT; solid continuous channel line; circle on gate Rectangle; gate bubble; normally-on indicator logic ON (Conducting) DN3545
4-Pin (Bulk/Body exposed) Separate line extending from the channel bar (usually tied to Source) Separate bulk input pin on the rectangle (Substrate/Bulk) Depends on mode CD4007 (IC level)

Regional and Standard Variants: IEEE vs. IEC 60617

The visual language of your schematic depends heavily on the region and the CAD software's default library settings. According to Electronics Notes, the divergence between these two standards causes the most friction in multinational engineering teams.

IEEE/ANSI (US & Global Hobbyist Standard): This is the symbol set used by All About Circuits and most SPICE simulators. It uses a vertical line to represent the channel. The Gate is drawn as a parallel plate separated by a gap (representing the oxide insulation). Enhancement mode is shown by breaking the channel line into three dashed segments, indicating that no physical channel exists until a voltage is applied. P-channel devices get a bubble at the gate to indicate active-low logic (a positive voltage turns it off, a negative Vgs turns it on).

IEC 60617 (European & Industrial Standard): IEC abandons the physical representation of the channel and gate capacitor. Instead, it uses a rectangular box to represent the component body. The Drain is at the top, Source at the bottom, and Gate on the left. It relies on logical inversion bubbles (like those used on logic gates) to denote P-channel or depletion-mode behavior. If you are troubleshooting a German or Swiss industrial control panel, expect IEC symbols.

Rows and Symbols People Get Wrong

Even experienced engineers make assumptions based on incomplete schematic symbols. Here are the specific pitfalls that cause hardware failures on the bench.

Hazard: The Missing Body Diode
In IC design and many basic textbook schematics, the MOSFET symbol is drawn as a pure 3-terminal switch. However, every discrete power MOSFET (like the ubiquitous IRF3205) has an intrinsic parasitic body diode between the Drain and Source due to the silicon doping structure. If your schematic omits the diode but you are switching an inductive load (like a relay coil or motor), you must either add an external flyback diode or verify that the MOSFET's internal diode is rated for the repetitive avalanche energy of your specific load. Relying on an un-rated internal diode will result in a catastrophic short.

The Arrow Direction Confusion: Beginners often think the arrow indicates current flow from Drain to Source. It does not. The arrow is located on the Source pin and represents the PN junction between the Source and the Body (Bulk). For an N-channel MOSFET, the body is P-type and the source is N-type, making a diode that points IN (from P to N). For P-channel, it points OUT. If you trace the arrow as load current, your high-side/low-side topology will be backwards.

Depletion vs. Enhancement Defaults: If you see a solid channel line (no breaks) in an IEEE symbol, it is a depletion-mode device. It is normally ON when Vgs is 0V. You must apply a negative voltage (for N-ch) to turn it off. Using a depletion MOSFET in a standard low-side switch circuit designed for an enhancement MOSFET will result in the load turning on immediately at power-up, bypassing your microcontroller's GPIO control.

Decision Tree: Picking the Right Symbol and Physical Part

Stop guessing which topology to use. Use this decision matrix to terminate your design process with a concrete symbol and a specific, purchasable part number for modern 2026 logic-level designs.

Circuit Requirement Symbol to Draw Topology Concrete Part Pick
Switching a ground path (Low-Side) from a 3.3V/5V MCU N-Channel Enhancement Source to GND, Drain to Load IRLZ44N (TO-220) or Si2302 (SOT-23)
Switching VCC (High-Side) directly from a 5V MCU GPIO P-Channel Enhancement Source to VCC, Drain to Load IRF9540 (TO-220) or Si2301 (SOT-23)
Switching VCC (High-Side) for high current (>10A) efficiently N-Channel Enhancement + Bootstrap IC Source to Load, Drain to VCC (Requires Gate Driver like IR2110) IRFB4110 driven by IR2110
Normally-ON safety circuit (must conduct if MCU dies/loses power) N-Channel Depletion Source to GND, Drain to Load LND150 or DN2540

Note: Always verify the Vgs(th) (Gate Threshold Voltage) on the datasheet. A part labeled 'IRF520' requires 10V on the gate to fully turn on; it will overheat and fail if driven directly by a 3.3V ESP32 GPIO. Always choose 'Logic Level' parts (usually denoted by an 'L' or 'I' prefix, like IRLZ44N) for direct microcontroller driving.

Safe Interpretation of Faded or Missing Markings

When repairing a damaged PCB, you will often encounter a scorched MOSFET with faded silkscreen, and the manufacturer's schematic may be proprietary or use a non-standard block symbol. Do not guess the channel type based on the surrounding copper pour. Use your multimeter to definitively identify the physical silicon regardless of the schematic symbol.

Bench Trick: The Diode Test Pinout Method
Set your multimeter to the Diode Test mode. Because the physical body diode always exists between Drain and Source, you can map the pins and identify the channel type in under 30 seconds:
  • Find the Gate: Test all pin combinations. The Gate will read 'OL' (Open Loop) in both directions against the other two pins due to the insulated oxide layer.
  • Identify N-Channel: Place the Red probe on the Source and Black on the Drain. You will read a voltage drop of 0.4V to 0.6V (the body diode forward voltage). Reverse the probes, and it should read 'OL'.
  • Identify P-Channel: Place the Black probe on the Source and Red on the Drain. You will read 0.4V to 0.6V. Reverse the probes, and it should read 'OL'.
If you read a dead short (0.00V) between Drain and Source in both directions, the MOSFET has suffered a thermal runaway failure and the silicon has melted internally. Desolder it and verify the gate driver circuit before installing the replacement.

For deeper practical applications on using these components as switches, refer to the switching topology guides at Electronics Tutorials. Always cross-reference the physical datasheet of your chosen part number against the schematic symbol, as CAD libraries frequently mislabel depletion-mode or 4-pin bulk devices as standard 3-pin enhancement switches.