HTML Entity for Less Than Above Left Arrow (⥶)

What You'll Learn
How to display the Less Than Above Left Arrow (⥶) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2976 (LESS-THAN ABOVE LEFTWARDS ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a composite arrow combining a less-than sign above a leftwards arrow, used in mathematical notation and directional expressions.
Render it with ⥶ (named), ⥶, ⥶, or CSS \2976. Pair with U+2977 (⥷, less-than above rightwards arrow / <rarr;). Do not confuse ⥶ with ≤ (less-than or equal / ≤) or ← (leftwards arrow).
⚡ Quick Reference — Less Than Above Left Arrow
U+2976Supplemental Arrows-B
⥶Hexadecimal reference
⥶Decimal reference
⥶Most readable option
Name Value
──────────── ──────────
Unicode U+2976
Hex code ⥶
HTML code ⥶
Named entity ⥶
CSS code \2976
Meaning Less-than above leftwards arrow
Related U+2977 = less-than above rightwards arrow (⥷ / <rarr;)
U+2264 = less-than or equal (≤ / ≤)Complete HTML Example
A simple example showing the Less Than Above Left Arrow (⥶) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2976";
}
</style>
</head>
<body>
<p>Symbol (hex): ⥶</p>
<p>Symbol (decimal): ⥶</p>
<p>Symbol (named): ⥶</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Less Than Above Left Arrow (⥶) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Less Than Above Left Arrow (⥶) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⥶ uses the Unicode hexadecimal value 2976 for the less-than above leftwards arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥶ uses the decimal Unicode value 10614 to display the same character.
Named Entity
⥶ is the semantic named entity — the easiest to read in source HTML for this composite arrow symbol.
CSS Entity
\2976 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥶. Unicode U+2976 is in the Supplemental Arrows-B block. Previous: Left White Arrow.
Use Cases
The Less Than Above Left Arrow (⥶) is commonly used in:
Represent relations or directional ordering in equations and formal mathematical expressions.
Show ordering, comparison, or directional relations in tutorials and technical writing.
Use in logic, algebra, or computer science papers requiring composite arrow symbols.
Display conditional or comparative flow direction in process diagrams.
Represent subtyping, ordering, or directional relations in type systems and specs.
Use in formula editors, equation renderers, or technical dashboards.
💡 Best Practices
Do
- Prefer
⥶when writing HTML by hand for readability - Pair the symbol with text or MathML where possible for accessibility
- Verify your font supports Supplemental Arrows-B (U+2976)
- Keep one entity style per project for consistency
- Provide context so readers understand the composite arrow meaning
Don’t
- Confuse ⥶ with ≤ (less-than or equal /
≤) - Confuse ⥶ with ⥷ (rightwards variant /
<rarr;) - Use CSS
\2976inside HTML text nodes - Use the symbol alone without explaining its mathematical meaning
- Mix entity styles randomly in one file
Key Takeaways
Four methods all render ⥶
⥶ ⥶ ⥶For CSS, use \2976 in the content property
Unicode U+2976 — LESS-THAN ABOVE LEFTWARDS ARROW
Named entity ⥶ is the most readable option
Previous: Left White Arrow Next: Less Than But Not Equal To
❓ Frequently Asked Questions
⥶ (named), ⥶ (hex), ⥶ (decimal), or \2976 in CSS content. All four methods render ⥶ correctly.U+2976 (LESS-THAN ABOVE LEFTWARDS ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2976, decimal 10614. Used in mathematical notation and directional expressions.⥶, ⥶, or ⥶) go in markup. The CSS escape \2976 is used in stylesheets, typically on ::before or ::after. Both produce ⥶.⥶ is the named HTML entity for U+2976. You can also use ⥶ (decimal), ⥶ (hex), or \2976 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
