Seven-Segment Display Symbol
Definition: The Seven-Segment Display symbol represents a numeric LED (or LCD) display module consisting of seven independently controllable bar-shaped segments arranged to form any decimal digit (0–9) or hexadecimal character, used in electronic schematic diagrams with seven segment-control pins (a–g) plus common-anode or common-cathode power connections.
Also known as: 7-segment display, 7-seg, LED digit display, numeric LED display, 7-segment LED indicator.
What the Seven-Segment Display symbol means
The Seven-Segment Display symbol identifies a display module whose visible output is formed by selectively illuminating seven LED segments arranged in a figure-eight pattern. By energising combinations of the seven segments (labelled a through g), any decimal digit from 0 to 9 and several alphanumeric characters can be displayed.
In a schematic diagram the symbol shows seven segment control pins (a, b, c, d, e, f, g) plus a common pin (common anode or common cathode depending on the variant). Each segment pin drives one bar of the display. Additional pins may include a decimal-point segment (dp) and separate common pins for multi-digit packages.
How to identify the Seven-Segment Display symbol
The Seven-Segment Display symbol is typically drawn as a rectangular block with a stylised figure-eight pattern inside showing the seven segment positions (a = top horizontal, b = upper-right vertical, c = lower-right vertical, d = bottom horizontal, e = lower-left vertical, f = upper-left vertical, g = middle horizontal). Seven pins (a–g) exit the symbol, and common connection pins exit the top or bottom. In reference, pin a appears at the top, b and c on the right side, d at the bottom, e and f on the left side, and g on the left representing the middle segment.
Function in a circuit
A seven-segment display illuminates specific combinations of seven bar segments to form digit and character shapes. Each segment is an LED (or liquid crystal cell) that is driven independently by a logic-level signal from a microcontroller, decoder IC (such as a 74LS47 BCD-to-7-segment decoder), or dedicated display driver. In common-cathode configuration all cathodes share a single GND connection; in common-anode configuration all anodes share a single VCC connection.
Standards: IEC vs ANSI
| IEC 60617 | No dedicated IEC 60617 symbol exists for a seven-segment display. IEC 60617 represents display devices as rectangular functional blocks. The physical LED construction is covered by IEC 60747-12 (semiconductor optoelectronic devices). |
|---|---|
| ANSI/IEEE 315 | ANSI Y32.2 / IEEE 315 does not define a unique 7-segment symbol; displays are represented as labelled rectangular functional blocks per IEEE 315 block-diagram conventions. |
| Key difference | Both IEC and ANSI use the same generic rectangular block for the 7-segment display schematic symbol. The internal figure-eight segment pattern is a manufacturer-drawn convention. The a–g segment labelling and the common-anode/common-cathode configuration convention are universally adopted industry standards, not specific to IEC or ANSI. |
Terminals / pins
| Pin | Name |
|---|---|
| a | a |
| b | b |
| c | c |
| d | d |
| e | e |
| f | f |
| g | g |
Typical values
Forward voltage per segment (LED): 1.8 V–2.2 V (red/yellow), 2.8 V–3.5 V (green/blue/white). Forward current per segment: 10 mA–20 mA typical. Series resistor required: (VCC − VF) / IF, e.g. (5 V − 2.0 V) / 0.015 A ≈ 200 Ω for a red segment at 15 mA. Display height: 0.28 inch, 0.36 inch, 0.56 inch, 0.80 inch, 1 inch (standard sizes). Character height codes: 5161AS (0.56 in CC), 5611AH (0.56 in CA).
Where the Seven-Segment Display symbol is used
- Digital clocks and timers displaying hours, minutes, and seconds
- Multimeters and bench instruments showing measured voltage, current, and resistance values
- Scoreboard and sports timing displays for lap times, scores, and countdowns
- Industrial panel meters and temperature controllers showing process variable values
- Microcontroller learning projects demonstrating BCD-to-7-segment decoder ICs such as the 74LS47
- Point-of-sale displays and price indicators showing numerical values
- Elevator floor indicators displaying current floor number
Example
In an Arduino counter circuit, the Seven-Segment Display symbol is connected with its seven segment pins (a–g) to Arduino digital pins 2–8 through 220 Ω current-limiting resistors, and the common cathode pin is wired to GND. The Arduino cycles through binary patterns on pins 2–8 to display digits 0–9, advancing the displayed count each time a push-button interrupt occurs.
Key facts
- The seven segments are universally labelled a (top), b (upper-right), c (lower-right), d (bottom), e (lower-left), f (upper-left), and g (middle) — this labelling is a universal industry convention used by all manufacturers regardless of region or standard.
- Two electrical configurations exist: common-cathode (CC) where all segment cathodes share one GND pin, and common-anode (CA) where all segment anodes share one VCC pin. Driving logic is inverted between the two types.
- Each segment LED requires a current-limiting series resistor to prevent burnout; the resistor value is calculated as R = (VCC − VF) / IF, where VF is the LED forward voltage and IF is the desired operating current (typically 10–20 mA).
- A 74LS47 (or 74HC4511) BCD-to-7-segment decoder IC converts a 4-bit BCD input (0000–1001) into the correct 7-segment output pattern, eliminating the need to compute individual segment states in firmware.
- Multiplexed 7-segment displays (multi-digit packages) share segment control pins across all digits and use separate common pins to select which digit is active at any moment; the human eye perceives continuous illumination when each digit is refreshed at 100 Hz or faster.
- The MAX7219 and TM1637 are popular dedicated 7-segment display driver ICs that reduce the required microcontroller GPIO count to 2 (I2C or SPI) while driving up to 8 digits.
- The decimal point is an eighth segment, labelled dp, which shares the common connection with segments a–g but is controlled by a separate pin, allowing the display to show a decimal point alongside the digit.
Frequently asked questions
What does the seven-segment display symbol look like?
The 7-segment display symbol is a rectangular block with a figure-eight pattern inside showing seven bar segments labelled a through g. Seven pins (a, b, c, d, e, f, g) exit the block for individual segment control, and one or two common pins (common anode or common cathode) provide the shared power connection.
What do the segment pins a through g mean on a seven-segment display?
Each letter designates one LED bar segment: a = top horizontal, b = upper-right vertical, c = lower-right vertical, d = bottom horizontal, e = lower-left vertical, f = upper-left vertical, g = middle horizontal. To display the digit 8 all seven segments are on; to display 1 only b and c are on.
What is the difference between common-cathode and common-anode seven-segment displays?
In a common-cathode display all LED cathodes are joined to a single GND pin; a segment lights up when its control pin is driven HIGH. In a common-anode display all anodes are joined to a single VCC pin; a segment lights up when its control pin is driven LOW. The electrical function is identical but the driving logic is inverted.
What current-limiting resistor does a seven-segment display need?
Each segment requires a series resistor: R = (VCC − VF) / IF. For a 5 V supply, a red segment with 2.0 V forward voltage running at 15 mA needs R = (5 − 2.0) / 0.015 = 200 Ω. Use 220 Ω as the nearest standard value. One resistor per segment is required unless a constant-current driver IC is used.
What standard defines the seven-segment display symbol?
Neither IEC 60617 nor ANSI Y32.2 / IEEE 315 defines a dedicated 7-segment display symbol. Both standards represent display devices as labelled rectangular functional blocks. The a–g segment labelling convention is a universal industry standard adopted by all display manufacturers.
How do I drive a seven-segment display from a microcontroller without using 7 GPIO pins?
Use a dedicated driver IC such as the MAX7219 (SPI, drives up to 8 digits with 3 GPIO pins) or TM1637 (I2C-like, 2 GPIO pins for up to 6 digits). Alternatively use a 74HC4511 BCD-to-7-segment decoder, which reduces the GPIO requirement to 4 binary-coded lines plus the enable signal.
What is the designator for a seven-segment display in a schematic?
Seven-segment displays use the designator DS (display) or LED followed by a reference number, e.g. DS1 or LED1. Some schematics use HEX1 or DIG1 to indicate a hexadecimal or digit display type. IEC 60617 uses DS as the recommended display designator.
Place the Seven-Segment Display symbol on a wiring diagram or schematic in the free online circuit diagram maker — no download required.