HTML Entity for Ohm Sign (Ω)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2126

What You'll Learn

How to display the Ohm sign (Ω) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol denotes the SI unit of electrical resistance (ohm). It appears in circuit diagrams, datasheets, physics textbooks, and electronics documentation (e.g. 100 Ω, 4.7 kΩ).

This character is U+2126 (OHM SIGN) in the Letterlike Symbols block (U+2100–U+214F). Use Ω, Ω, or CSS \2126. There is no named HTML entity for U+2126. Do not confuse with Ω (U+03A9, Greek capital omega)—a related but distinct character.

⚡ Quick Reference — Ohm Sign

Unicode U+2126

Letterlike Symbols

Hex Code Ω

Hexadecimal reference

HTML Code Ω

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2126
Hex code       Ω
HTML code      Ω
Named entity   (none)
CSS code       \2126
Meaning        Ohm (electrical resistance)
Glyph          Ω
Example        R = 100 Ω
Related        U+2127 = inverted ohm (℧, ℧)
               U+03A9 = Greek capital omega (Ω, Ω)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the Ohm sign (Ω) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2126";
  }
 </style>
</head>
<body>
<p>Ohm Sign (hex): &#x2126;</p>
<p>Ohm Sign (decimal): &#8486;</p>
<p id="point">Ohm Sign (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ohm sign (Ω) is widely supported when fonts include Letterlike Symbols (U+2100–U+214F):

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Ohm sign (Ω) in electrical and engineering contexts:

Resistance 100 Ω   4.7 kΩ   1 MΩ
Circuit label R1 = 220 Ω
Large glyph
vs &Omega; Ohm sign: U+2126 (Ω)   Greek omega: U+03A9 (Ω, &Omega;)
Numeric refs &#x2126; &#8486; \2126

🧠 How It Works

1

Hexadecimal Code

&#x2126; uses the Unicode hexadecimal value 2126 to display the Ohm sign (Ω).

HTML markup
2

Decimal HTML Code

&#8486; uses the decimal Unicode value 8486 for the same character.

HTML markup
3

CSS Entity

\2126 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
4

No Named Entity

U+2126 has no standard &...; named form. Use hex, decimal, or CSS escape only—not &Omega;, which is U+03A9.

HTML markup
=

Same visual result

All three methods produce (Ω). Unicode U+2126 is the dedicated ohm unit symbol in Letterlike Symbols.

Use Cases

The Ohm sign (Ω) is commonly used in:

⚡ Electrical engineering

Circuit diagrams, schematics, and resistor value labels (e.g. 100 Ω).

📐 Physics & electronics

Ohm’s law, impedance, and resistance formulas in tutorials and textbooks.

📚 Education

STEM courses, lab manuals, and interactive electronics learning platforms.

📄 Datasheets

Component specifications listing resistance ranges and tolerances.

💻 Product UI

Multimeters, simulators, and IoT dashboards showing resistance readings.

📋 Symbol reference

Unicode charts, unit pickers, and HTML entity documentation.

♿ Accessibility

Pair Ω with “ohm” or aria-label on first use for screen readers.

💡 Best Practices

Do

  • Use &#x2126; or &#8486; for the dedicated ohm unit symbol
  • Use fonts that support Letterlike Symbols (U+2126)
  • Set <meta charset="utf-8">
  • Pick one numeric style per project
  • Add nearby text or aria-label (e.g. “100 ohms”) for accessibility

Don’t

  • Expect a named HTML entity for U+2126
  • Confuse U+2126 (ohm sign) with U+03A9 (&Omega;, Greek omega)
  • Use padded Unicode notation like U+02126—the correct value is U+2126
  • Use CSS \2126 inside HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS for U+2126

&#x2126; &#8486;
2

For CSS, use \2126 in the content property

3

Unicode U+2126 — OHM SIGN (SI resistance unit)

4

Letterlike Symbols block; glyph

5

Previous: Combining Ogonek (̨)   Next: Oi (ƣ)

❓ Frequently Asked Questions

Use &#x2126; (hex), &#8486; (decimal), or \2126 in CSS content. There is no named entity for U+2126. All methods render Ω when the font supports it.
U+2126 (OHM SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 2126, decimal 8486. SI unit symbol for electrical resistance.
No. U+2126 is OHM SIGN (letterlike unit symbol). U+03A9 is GREEK CAPITAL LETTER OMEGA (&Omega;). They look similar in many fonts but are distinct code points. Use U+2126 for the dedicated ohm unit symbol.
HTML references (&#8486; or &#x2126;) go in markup. The CSS escape \2126 is used in stylesheets, typically on ::before or ::after. Both render Ω.
Named entities cover common characters; Letterlike Symbols like U+2126 use numeric hex or decimal codes or CSS escapes. That is standard for many letterlike unit symbols in the U+2100–U+214F block.

Explore More HTML Entities!

Discover 1500+ HTML character references — SI and letterlike symbols, math, science, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful