HTML Entity for Left Right Arrow Through Small Circle (⥈)

What You'll Learn
How to display the Left Right Arrow Through Small Circle (⥈) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2948 (LEFT RIGHT ARROW THROUGH SMALL CIRCLE) in the Supplemental Arrows-B block (U+2900–U+297F)—a left-right arrow passing through a small circle, often used for reversible operations, symmetric relations, or processes that can go both ways through a defined state.
Render it with ⥈ (named), ⥈, ⥈, or CSS \2948. Do not confuse ⥈ with U+2194 (↔, simple left right arrow / ↔) or U+21AE (↮, left right arrow with stroke / ↮).
⚡ Quick Reference — Left Right Arrow Through Small Circle
U+2948Supplemental Arrows-B
⥈Hexadecimal reference
⥈Decimal reference
⥈Most readable option
Name Value
──────────── ──────────
Unicode U+2948
Hex code ⥈
HTML code ⥈
Named entity ⥈
CSS code \2948
Meaning Left right arrow through small circle
Related U+2194 = left right arrow (↔)
U+21AE = left right arrow stroke (↮)Complete HTML Example
A simple example showing the Left Right Arrow Through Small Circle (⥈) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2948";
}
</style>
</head>
<body>
<p>Arrow (hex): ⥈</p>
<p>Arrow (decimal): ⥈</p>
<p>Arrow (named): ⥈</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Left Right Arrow Through Small Circle (⥈) renders in modern browsers when the font supports Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Right Arrow Through Small Circle (⥈) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⥈ uses the Unicode hexadecimal value 2948 for the left right arrow through small circle. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥈ uses the decimal Unicode value 10568 to display the same character.
Named Entity
⥈ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
CSS Entity
\2948 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥈. Unicode U+2948 is in Supplemental Arrows-B. Previous: Left Right Arrow Stroke.
Use Cases
The Left Right Arrow Through Small Circle (⥈) is commonly used in:
In chemistry, indicate equilibrium or reversible reactions (e.g. A ⥈ B).
Denote symmetric relations or bidirectional mappings through a point.
Show processes that can run in both directions through a defined state.
Represent two-way flow or reversible steps with a distinct visual.
Use in papers for reversible or symmetric operation notation.
Display “reversible” or “bidirectional through center” in interfaces.
💡 Best Practices
Do
- Use
⥈for readable source markup - Add
aria-labelor surrounding text for accessibility - Verify your font supports Supplemental Arrows-B (U+2948)
- Keep one entity style per project for consistency
- Provide context when the symbol denotes reversibility or symmetry
Don’t
- Confuse ⥈ (through circle) with ↔ (simple left right arrow)
- Use CSS
\2948inside HTML text nodes - Assume all fonts render the circle-through-arrow glyph identically
- Mix entity styles randomly in one file
- Use the symbol without explaining its reversible meaning on first use
Key Takeaways
Three HTML references plus CSS all render ⥈
⥈ ⥈ ⥈For CSS, use \2948 in the content property
Unicode U+2948 — LEFT RIGHT ARROW THROUGH SMALL CIRCLE
Prefer ⥈ for readability—it’s the named HTML entity
Previous: Left Right Arrow Stroke Next: Left Right Arrow Vertical Stroke
❓ Frequently Asked Questions
⥈ (hex), ⥈ (decimal), ⥈ (named), or \2948 in CSS content. All four methods render ⥈ correctly.U+2948 (LEFT RIGHT ARROW THROUGH SMALL CIRCLE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2948, decimal 10568. Shows a left-right arrow passing through a small circle.⥈, ⥈, or ⥈) go in markup. The CSS escape \2948 is used in stylesheets, typically on ::before or ::after. Both produce ⥈.⥈ is the named HTML entity for U+2948. You can also use ⥈ (decimal) or ⥈ (hex) and \2948 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
