HTML Entity for Superset Above Left Arrow (⥻)

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

What You'll Learn

How to display the Superset Above Left Arrow symbol (⥻) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+297B (SUPERSET ABOVE LEFT ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—used for directional set relations in mathematics and set theory.

Render it with ⥻, ⥻, the named entity ⥻, or CSS escape \297B. It combines a superset symbol with a left arrow to indicate directional set relationships. Do not confuse ⥻ with ⊃ (superset of, ⊃) or a plain left arrow ←.

⚡ Quick Reference — Superset Above Left Arrow

Unicode U+297B

Supplemental Arrows-B

Hex Code ⥻

Hexadecimal reference

HTML Code ⥻

Decimal reference

Named Entity ⥻

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+297B
Hex code       ⥻
HTML code      ⥻
Named entity   ⥻
CSS code       \297B
Block          Supplemental Arrows-B (U+2900–U+297F)
Related        U+2979 = Subset Above Right Arrow (⥹)
1

Complete HTML Example

This example demonstrates the Superset Above Left Arrow symbol (⥻) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\297B";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x297B;</p>
<p>Using HTML Code: &#10619;</p>
<p>Using Named Entity: &suplarr;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Superset Above Left Arrow 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 Superset Above Left Arrow symbol (⥻) rendered in different contexts:

Set notation AB — directional superset relation with left arrow
Large glyph
vs superset ⥻ superset above left arrow   ⊃ superset of
Monospace &#x297B; &#10619; &suplarr; \297B
Named entity &suplarr; → ⥻

🧠 How It Works

1

Hexadecimal Code

&#x297B; uses the Unicode hexadecimal value 297B to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&suplarr; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+297B in the Supplemental Arrows-B block (U+2900–U+297F).

Use Cases

The Superset Above Left Arrow symbol (⥻) commonly appears in:

📐 Math Expressions

Equations with directional set relationships.

🗃 Set Theory

Directional superset relations between sets.

📚 Academic Content

Research papers, proofs, and scholarly articles.

📄 Scientific Docs

Technical documentation and math web applications.

🎓 Education

Online courses and tutorials on set theory.

💻 Math Software

Calculator interfaces and computational tool UIs.

📝 Research Papers

Conference proceedings and mathematical journals.

💡 Best Practices

Do

  • Use &suplarr; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Add aria-label for standalone symbols in math content
  • Test the glyph across browsers and fonts
  • Pair ⥻ with plain text on first use

Don’t

  • Confuse ⥻ with ⊃ (superset of) or a plain left arrow
  • Mix entity styles randomly in one file
  • Use CSS escape \297B inside HTML text nodes
  • Use HTML entities in JS (use \u297B instead)
  • Assume all fonts render ⥻ clearly at small sizes

Key Takeaways

1

Three HTML references all render ⥻

&#x297B; &#10619; &suplarr;
2

For CSS stylesheets, use the escape in the content property

\297B
3

Unicode U+297B — SUPERSET ABOVE LEFT ARROW

4

Prefer &suplarr; for readability—it’s the most self-descriptive named entity

5

Related: ⥹ (subset above right arrow) in the same Unicode block

❓ Frequently Asked Questions

Use &#x297B; (hex), &#10619; (decimal), &suplarr; (named), or \297B in CSS content. All produce ⥻.
U+297B (SUPERSET ABOVE LEFT ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 297B, decimal 10619.
In mathematical expressions, set theory notation, academic content, scientific documentation, educational materials, research papers, and any content requiring precise set notation with directional indicators.
HTML entities (&#10619;, &#x297B;, or &suplarr;) go directly in markup. The CSS escape \297B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
The named HTML entity is &suplarr;. It is equivalent to &#10619; (decimal) or &#x297B; (hexadecimal) and renders ⥻.

Explore More HTML Entities!

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