HTML Entity for Right Arrow Through Less-Than (⥴)

What You'll Learn
How to display the Right Arrow Through Less-Than (⥴) in HTML using numeric references and CSS escapes. This character is U+2974 (RIGHT ARROW THROUGH LESS-THAN) in the Supplemental Arrows-B block (U+2900–U+297F)—a specialized mathematical and logical arrow symbol.
You can use hex ⥴, decimal ⥴, or CSS \2974. There is no named HTML entity. Do not confuse ⥴ with U+2973 (⥳, left arrow above tilde operator, ⥳), U+2975 (⥵), or plain U+2192 (→).
⚡ Quick Reference — Right Arrow Through Less-Than
U+2974Supplemental Arrows-B (U+2900–U+297F)
⥴Hexadecimal reference
⥴Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2974
Hex code ⥴
HTML code ⥴
Named entity (none)
CSS code \2974
Meaning Right arrow through less-than
Related U+2192 = right arrow (→)
U+2973 = left arrow above tilde (⥳, ⥳)
U+2975 = right arrow above almost equal (⥵)
U+2977 = left arrow through less-than (⥷)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⥴ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2974";
}
</style>
</head>
<body>
<p>Hex: ⥴</p>
<p>Decimal: ⥴</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+2974 is supported in all modern browsers when a font with Supplemental Arrows-B coverage is available:
👀 Live Preview
See the Right Arrow Through Less-Than (⥴) in mathematical and logical contexts:
🧠 How It Works
Hexadecimal Code
⥴ uses the Unicode hexadecimal value 2974 to display the right arrow through less-than symbol.
Decimal HTML Code
⥴ uses the decimal Unicode value 10612 for the same character.
CSS Entity
\2974 is used in CSS stylesheets in the content property of pseudo-elements.
Same visual result
All three methods render ⥴. Unicode U+2974 in Supplemental Arrows-B. Next: Right Arrow Black Diamond.
Use Cases
The Right Arrow Through Less-Than (⥴) is commonly used in:
Formal expressions, proofs, and mathematical documentation.
Logical statements combining arrows with ordering relations.
Research documents and scholarly articles requiring precise notation.
Specifications, algorithm descriptions, and formal documentation.
Formal specifications and notation in CS textbooks and papers.
Provide plain-language context alongside the symbol for screen readers.
💡 Best Practices
Do
- Use
⥴or⥴consistently in HTML markup - Set
<meta charset="utf-8">for reliable rendering - Use a font with good mathematical symbol coverage for academic content
- Link to Left Arrow Above Tilde Operator and Right Arrow Above Almost Equal To for related symbols
- Pick one numeric reference style per project for consistency
Don’t
- Confuse ⥴ with ⥳ (left arrow above tilde,
⥳) or → (plain right arrow) - Use padded Unicode notation like U+02974—the correct value is
U+2974 - Use CSS escape
\2974in HTML text nodes - Call U+2974 a “tilde operator” symbol—Unicode names it right arrow through less-than
- Assume every system font renders Supplemental Arrows-B without testing
Key Takeaways
Three ways to render U+2974 in HTML and CSS (no named entity)
⥴ ⥴For CSS stylesheets, use \2974 in the content property
Unicode U+2974 — RIGHT ARROW THROUGH LESS-THAN (⥴)
Distinct from ⥳ (left arrow above tilde), ⥵ (U+2975), and plain →
Previous: Right Arrow Above Short Left Arrow (⥂) Next: Right Arrow Black Diamond
❓ Frequently Asked Questions
⥴ (hex), ⥴ (decimal), or \2974 in CSS content. There is no named entity. All three render ⥴.U+2974 (RIGHT ARROW THROUGH LESS-THAN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2974, decimal 10612.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, math operators, punctuation, and more.
8 people found this page helpful
