HTML Entity for Left Arrow Above Tilde Operator (⥳)

What You'll Learn
How to display the Left Arrow Above Tilde Operator (⥳) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2973 (LEFTWARDS ARROW ABOVE TILDE OPERATOR) in the Supplemental Arrows-B block (U+2900–U+297F)—a leftwards arrow combined with a tilde operator, used in mathematical notation, logic, equivalence, and approximation relations.
Render it with ⥳ (named), ⥳, ⥳, or CSS \2973. Related: U+2943 (⥃, left arrow above short right arrow), U+223C (∼, tilde operator).
⚡ Quick Reference — Left Arrow Above Tilde Operator
U+2973Supplemental Arrows-B
⥳Hexadecimal reference
⥳Decimal reference
⥳Most readable option
Name Value
──────────── ──────────
Unicode U+2973
Hex code ⥳
HTML code ⥳
Named entity ⥳
CSS code \2973
Meaning Leftwards arrow above tilde operator
Related U+2943 = left arrow above short right (⥃)
U+223C = tilde operator (∼)Complete HTML Example
A simple example showing the Left Arrow Above Tilde Operator (⥳) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2973";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥳</p>
<p>Symbol using HTML Code: ⥳</p>
<p>Symbol using HTML Entity: ⥳</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Above Tilde Operator (⥳) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Arrow Above Tilde Operator (⥳) in math and logic contexts:
🧠 How It Works
Named HTML Entity
⥳ is the named entity for the Left Arrow Above Tilde Operator. It is easy to read in mathematical or logic markup.
Hexadecimal Code
⥳ uses the Unicode hexadecimal value 2973. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥳ uses the decimal Unicode value 10611 for the same composite symbol.
CSS Entity
\2973 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥳. Unicode U+2973 is in Supplemental Arrows-B. Next: Left Arrow Bar.
Use Cases
The Left Arrow Above Tilde Operator (⥳) is commonly used in:
Equivalence, approximation, or leftwards relation with tilde in equations and proofs.
Formal logic, set theory, or relation symbols where arrow-above-tilde is defined.
Asymptotic behavior, equivalence, or transformation in technical documentation.
“Similar to” or “approximately” in analysis, algorithms, or scientific content.
Formal notation, API semantics, or specification language using this symbol.
Teach relation symbols in math, computer science, or logic curricula.
💡 Best Practices
Do
- Prefer
⥳in HTML for readable source markup - Define or cite the symbol’s meaning in math or logic content
- Use fonts that support Supplemental Arrows-B (U+2973)
- Set
<meta charset="utf-8"> - Keep one entity style consistent across your project
- Provide
aria-labelor explanatory text for accessibility
Don’t
- Confuse ⥳ with ⥃ or plain ∼ (tilde)
- Mix entity styles randomly in one file
- Use CSS
\2973inside HTML text nodes - Assume all fonts render U+2973 without testing
- Use the symbol without defining its relation meaning
Key Takeaways
Four ways to render U+2973 in HTML and CSS
⥳ ⥳ ⥳For CSS, use \2973 in the content property
Unicode U+2973 — LEFTWARDS ARROW ABOVE TILDE OPERATOR
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Left Arrow Above Short Right Arrow (⥃) Next: Left Arrow Bar
❓ Frequently Asked Questions
⥳ (named), ⥳ (hex), ⥳ (decimal), or \2973 in CSS content. All four methods render ⥳.U+2973 (LEFTWARDS ARROW ABOVE TILDE OPERATOR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2973, decimal 10611. Combines a leftwards arrow with a tilde operator.⥳, ⥳, ⥳) go in markup. The CSS escape \2973 is used in stylesheets, typically on ::before or ::after. Both render ⥳.⥳ is the named HTML entity for U+2973. You can also use ⥳ (decimal) or ⥳ (hex) and \2973 in CSS—all equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, math operators, symbols, and more.
8 people found this page helpful
