HTML Entity for Less Than Above Right Arrow (⥷)

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

What You'll Learn

How to display the Less Than Above Right Arrow (⥷) in HTML using the named entity, 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 composite arrow combining a less-than sign above a leftwards arrow, used in mathematical notation and directional expressions.

Render it with &ltrarr; (named), ⥷, ⥷, or CSS \2977. Pair with U+2977 (⥷, less-than above rightwards arrow / &ltrarr;). Do not confuse ⥷ with ≤ (less-than or equal / ≤) or ← (leftwards arrow).

⚡ Quick Reference — Less Than Above Right Arrow

Unicode U+2977

Supplemental Arrows-B

Hex Code ⥷

Hexadecimal reference

HTML Code ⥷

Decimal reference

Named Entity &ltrarr;

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2977
Hex code       ⥷
HTML code      ⥷
Named entity   &ltrarr;
CSS code       \2977
Meaning        Less-than above leftwards arrow
Related        U+2977 = less-than above rightwards arrow (⥷ / &ltrarr;)
               U+2264 = less-than or equal (≤ / ≤)
1

Complete HTML Example

A simple example showing the Less Than Above Right Arrow (⥷) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2977";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2977;</p>
<p>Symbol (decimal): &#10615;</p>
<p>Symbol (named): &ltrarr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Less Than Above Right Arrow (⥷) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Less Than Above Right Arrow (⥷) rendered live in different contexts:

Inline math A ⥷ B denotes a directional ordering relation.
Large glyph
Composite pair ⥷ ⥷
Named vs numeric &ltrarr; &#x2977; &#10615; \2977
vs less-than or equal ⥷ vs ≤
Flow notation State B ⥷ State A (conditional leftward relation)

🧠 How It Works

1

Hexadecimal Code

&#x2977; uses the Unicode hexadecimal value 2977 for the less-than above leftwards arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&ltrarr; is the semantic named entity — the easiest to read in source HTML for this composite arrow symbol.

HTML markup
4

CSS Entity

\2977 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2977 is in the Supplemental Arrows-B block. Previous: Left White Arrow.

Use Cases

The Less Than Above Right Arrow (⥷) is commonly used in:

∑ Mathematical Notation

Represent relations or directional ordering in equations and formal mathematical expressions.

📄 Technical Documentation

Show ordering, comparison, or directional relations in tutorials and technical writing.

📚 Academic Papers

Use in logic, algebra, or computer science papers requiring composite arrow symbols.

📊 Flowcharts & Diagrams

Display conditional or comparative flow direction in process diagrams.

💻 Programming & Type Theory

Represent subtyping, ordering, or directional relations in type systems and specs.

🌐 Web Applications

Use in formula editors, equation renderers, or technical dashboards.

💡 Best Practices

Do

  • Prefer &ltrarr; 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+2977)
  • 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 / &le;)
  • Confuse ⥷ with ⥷ (rightwards variant / &ltrarr;)
  • Use CSS \2977 inside HTML text nodes
  • Use the symbol alone without explaining its mathematical meaning
  • Mix entity styles randomly in one file

Key Takeaways

1

Four methods all render ⥷

&ltrarr; &#x2977; &#10615;
2

For CSS, use \2977 in the content property

3

Unicode U+2977 — LEFTWARDS ARROW THROUGH LESS-THAN

4

Named entity &ltrarr; is the most readable option

❓ Frequently Asked Questions

Use &ltrarr; (named), &#x2977; (hex), &#10615; (decimal), or \2977 in CSS content. All four methods render ⥷ correctly.
U+2977 (LEFTWARDS ARROW THROUGH LESS-THAN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2977, decimal 10615. Used in mathematical notation and directional expressions.
In mathematical expressions and notation, technical documentation, arrow symbols in equations, flowcharts and diagrams, and any content requiring a less-than-above-right-arrow symbol.
HTML references (&#10615;, &#x2977;, or &ltrarr;) go in markup. The CSS escape \2977 is used in stylesheets, typically on ::before or ::after. Both produce ⥷.
Yes. &ltrarr; is the named HTML entity for U+2977. You can also use &#10615; (decimal), &#x2977; (hex), or \2977 in CSS.

Explore More HTML Entities!

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