HTML Entity for Subscript Equals (₌)

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

What You'll Learn

How to display the Subscript Equals symbol (₌) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+208C (SUBSCRIPT EQUALS SIGN) in the Superscripts and Subscripts block (U+2070–U+209F)—used for an equals sign in subscript position.

Render it with &#x208C;, &#8332;, or CSS escape \208C. There is no named HTML entity. For general subscript text, consider the HTML <sub> element; use ₌ when you need the dedicated Unicode subscript equals glyph.

⚡ Quick Reference — Subscript Equals

Unicode U+208C

Superscripts and Subscripts

Hex Code &#x208C;

Hexadecimal reference

HTML Code &#8332;

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+208C
Hex code       &#x208C;
HTML code      &#8332;
Named entity   (none)
CSS code       \208C
Block          Superscripts and Subscripts (U+2070–U+209F)
1

Complete HTML Example

This example demonstrates the Subscript Equals symbol (₌) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\208C";
  }
 </style>
</head>
<body>
<p>Subscript Equals using Hexadecimal: &#x208C;</p>
<p>Subscript Equals using HTML Code: &#8332;</p>
<p id="point">Subscript Equals using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Subscript Equals entity 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 Subscript Equals symbol (₌) rendered in different contexts:

Inline text Let x₌ denote the subscript equals notation.
Large glyph
In notation ab — subscript equality annotation
Monospace &#x208C; &#8332; \208C
vs regular = Subscript ₌   Regular =

🧠 How It Works

1

Hexadecimal Code

&#x208C; uses the Unicode hexadecimal value 208C to display the Subscript Equals symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8332; uses the decimal Unicode value 8332 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+208C in the Superscripts and Subscripts block (U+2070–U+209F). No named entity.

Use Cases

The Subscript Equals symbol (₌) commonly appears in:

📐 Math Expressions

Equations and formulas with subscript equality notation.

🧪 Chemical Formulas

Scientific notation and molecular formula annotations.

📚 Academic Content

Research papers, lecture notes, and scholarly articles.

📄 Scientific Docs

Technical documentation and math web applications.

✎ Typography

Footnotes, citations, and editorial subscript formatting.

🎓 Education

Online courses and tutorials teaching math and science.

📝 Citations

Bibliographies and reference materials with subscript markers.

💡 Best Practices

Do

  • Use &#x208C; or &#8332; for the dedicated subscript equals glyph
  • Pick one style (hex or decimal) per project for consistency
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label when the symbol stands alone
  • Test rendering across browsers and fonts

Don’t

  • Confuse ₌ with a regular equals sign (=) in subscript context
  • Put CSS escape \208C directly in HTML text nodes
  • Assume every font renders ₌ clearly at small sizes
  • Expect a named HTML entity for U+208C—use numeric references
  • Use HTML entities in JS (use \u208C instead)

Key Takeaways

1

Two HTML references both render ₌

&#x208C; &#8332;
2

For CSS stylesheets, use the escape in the content property

\208C
3

Unicode U+208C — SUBSCRIPT EQUALS SIGN

4

No named entity—use numeric references or CSS escape

5

Part of the Superscripts and Subscripts block (U+2070–U+209F)

❓ Frequently Asked Questions

Use &#x208C; (hex), &#8332; (decimal), or \208C in CSS content. There is no named HTML entity. All three produce ₌.
U+208C (SUBSCRIPT EQUALS SIGN). Superscripts and Subscripts block (U+2070–U+209F). Hex 208C, decimal 8332.
In mathematical expressions, chemical formulas, academic content, scientific documentation, typography, footnotes, citations, and any content requiring subscript notation with an equals sign.
HTML numeric references (&#8332; or &#x208C;) go directly in markup. The CSS escape \208C is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common Latin and math characters, but not every Unicode symbol. Superscripts and Subscripts characters like ₌ use numeric codes (hex or decimal) because they belong to specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, subscripts, superscripts, 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