HTML Entity for Inverted Ohm Sign (℧)

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

What You'll Learn

How to display the Inverted Ohm Sign (℧) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. The symbol represents conductance (the reciprocal of resistance); the unit is the mho (ohm spelled backwards). SI conductance is usually in siemens (S), but ℧ is still used in some contexts.

This character is U+2127 (INVERTED OHM SIGN) in the Letterlike Symbols block (U+2100–U+214F). Render it with ℧, ℧, ℧, or CSS \2127. For resistance use Ω (U+03A9), not ℧.

⚡ Quick Reference — Inverted Ohm Sign

Unicode U+2127

Letterlike Symbols

Hex Code ℧

Hexadecimal reference

HTML Code ℧

Decimal reference

Named Entity ℧

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2127
Hex code       ℧
HTML code      ℧
Named entity   ℧
CSS code       \2127
Meaning        Conductance (mho unit)
Example        G = 5 ℧
1

Complete HTML Example

This example demonstrates the Inverted Ohm Sign symbol (℧) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2127";
  }
 </style>
</head>
<body>
<p>Inverted Ohm Sign using Hexadecimal: &#x2127;</p>
<p>Inverted Ohm Sign using Decimal: &#8487;</p>
<p>Inverted Ohm Sign using Named Entity: &mho;</p>
<p id="point">Inverted Ohm Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Inverted Ohm Sign symbol (℧) is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Inverted Ohm Sign (℧) in electrical and scientific contexts:

Conductance G = 5 ℧ (5 mhos)
Relation G = 1/R, unit ℧ (mho)
Large glyph
Named entity &mho; → ℧
Numeric refs &#x2127; &#8487; \2127

🧠 How It Works

1

Hexadecimal Code

&#x2127; uses the Unicode hexadecimal value 2127 to display the Inverted Ohm Sign (℧). The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8487; uses the decimal Unicode value 8487 to display the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
4

Named Entity

&mho; is the standard named HTML entity for the inverted ohm sign (mho)—easy to read and remember in source markup.

HTML markup
=

Same visual result

All four methods produce (℧). Unicode U+2127 is in Letterlike Symbols. Next: Inverted Question Mark (U+00BF).

Use Cases

The Inverted Ohm Sign symbol (℧) is commonly used in:

⚡ Electrical

Denote conductance (G = 1/R) in formulas and datasheets.

🔌 Circuits

Circuit diagrams and schematics showing conductance in mhos.

📐 Physics

Electronics content, lab reports, and educational material.

📄 Technical Docs

Manuals and specs using conductance with ℧ (mho).

🎓 E-Learning

STEM courses teaching conductance and inverse ohm.

📊 Instrumentation

Readouts and dashboards displaying conductance in mhos.

💡 Best Practices

Do

  • Prefer &mho; for readable source markup
  • Label units clearly (e.g. “5 ℧” or “5 mhos”)
  • Set <meta charset="utf-8">
  • Use one entity style (named, hex, or decimal) per project
  • Use Ω (ohm) for resistance, ℧ (mho) for conductance

Don’t

  • Confuse ℧ (conductance, mho) with Ω (resistance, ohm)
  • Use CSS \2127 inside HTML text nodes
  • Mix entity styles randomly in one file
  • Assume every font renders Letterlike Symbols (test technical fonts)
  • Use ℧ when siemens (S) is required by style guide

Key Takeaways

1

Four HTML/CSS references all render ℧

&#x2127; &#8487; &mho;
2

For CSS stylesheets, use \2127 in the content property

3

Unicode U+2127 — INVERTED OHM SIGN (mho)

4

Prefer &mho; for readability in HTML source

❓ Frequently Asked Questions

Use &#x2127; (hex), &#8487; (decimal), &mho; (named), or \2127 in CSS content. All produce ℧.
U+2127 (INVERTED OHM SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 2127, decimal 8487. Denotes conductance; unit is the mho.
In electrical engineering, physics and electronics documentation, circuit diagrams, scientific and educational content, and any context that requires the mho unit or conductance symbol ℧.
HTML entities (&mho;, &#8487;, or &#x2127;) go in markup. The CSS escape \2127 is used in stylesheets, typically on ::before or ::after. Both render ℧.
Yes. &mho; is the named HTML entity for ℧ (mho, conductance). It is part of the HTML5 entity set and is well supported in modern browsers.

Explore More HTML Entities!

Discover 1500+ HTML character references — math, science symbols, 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