HTML Entity for Left Arrow Through Less Than (⥷)

What You'll Learn
How to display the Left Arrow Through Less Than (⥷) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2977 (LEFTWARDS ARROW THROUGH LESS-THAN) in the Supplemental Arrows-B block (U+2900–U+297F)—a leftwards arrow through a less-than sign, used in mathematical notation, programming (e.g., type theory), and technical content.
Render it with ⥷, ⥷, or CSS \2977. There is no named HTML entity. Related: U+2978 (⥸, right arrow through greater-than), U+21A2 (↢, left arrow tail / ↢).
⚡ Quick Reference — Left Arrow Through Less Than
U+2977Supplemental Arrows-B
⥷Hexadecimal reference
⥷Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2977
Hex code ⥷
HTML code ⥷
Named entity (none)
CSS code \2977
Meaning Leftwards arrow through less-than sign
Related U+2978 = right arrow through greater-than (⥸)
U+21A2 = left arrow tail (↢)Complete HTML Example
A simple example showing the Left Arrow Through Less Than (⥷) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2977";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥷</p>
<p>Symbol using HTML Code: ⥷</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Through Less Than (⥷) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Arrow Through Less Than (⥷) in math and type-theory contexts:
🧠 How It Works
Hexadecimal Code
⥷ uses the Unicode hexadecimal value 2977 to display the left arrow through less-than. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥷ uses the decimal Unicode value 10615 to display the same character.
CSS Entity
\2977 is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and technical notation.
Same visual result
All three methods produce ⥷. Unicode U+2977 is in Supplemental Arrows-B. Next: Left Arrow Through Subset.
Use Cases
The Left Arrow Through Less Than (⥷) is commonly used in:
Equations, order relations, or notation that use left-arrow-through-less-than in math content.
Type relations, subtyping, or formal notation in programming documentation and code.
Specifications, logic, or notation that uses this composite arrow.
Indicate implication or relation in formal diagrams and proofs.
Represent ordering or relation symbols in logic and set-theoretic notation.
Character sets, symbol lists, or Unicode reference content.
💡 Best Practices
Do
- Pair ⥷ with text or
aria-label(e.g., “left arrow through less than”) for accessibility - Use
⥷or⥷in HTML—no named entity exists - Use fonts that support Supplemental Arrows-B (U+2977)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test glyph rendering across browsers and fonts
Don’t
- Expect a named HTML entity for U+2977
- Use CSS
\2977inside HTML text nodes - Confuse ⥷ with ⥸ (right arrow through greater-than)
- Rely on the symbol alone without context in critical UI
- Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+2977
⥷ ⥷For CSS, use \2977 in the content property
Unicode U+2977 — LEFTWARDS ARROW THROUGH LESS-THAN
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Left Arrow Tail (↢) Next: Left Arrow Through Subset
❓ Frequently Asked Questions
⥷ (hex), ⥷ (decimal), or \2977 in CSS content. There is no named entity. All three methods render ⥷ correctly.U+2977 (LEFTWARDS ARROW THROUGH LESS-THAN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2977, decimal 10615. A leftwards arrow through a less-than sign.⥷ or ⥷) go in markup. The CSS escape \2977 is used in stylesheets, typically on ::before or ::after. Both produce ⥷.⥷) or decimal (⥷) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
