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

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2948

What Is the Left Right Arrow Through Small Circle Entity?

Left Right Arrow Through Small Circle (⥈) is the Supplemental Arrows-B character at Unicode U+2948 (LEFT RIGHT ARROW THROUGH SMALL CIRCLE). A bidirectional arrow passes through a small circle at the center.

Remember
Character     ⥈
Unicode       U+2948
Hex entity    ⥈
Decimal       ⥈
Named entity  ⥈
CSS escape    \2948
Not the same  ↔ (↔) · ↮ (↮)

All of these produce the same glyph: ⥈. Prefer ⥈ when you want an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⥈HTML markup (best entity default)
Hex entity⥈HTML markup
Decimal entity⥈HTML markup
CSS escape\2948Stylesheet content
Direct character⥈UTF-8 HTML text

When to Use Which

SituationUse
Readable HTML entity source⥈
Need a numeric entity⥈ or ⥈
Generated text via ::before / ::aftercontent: "\2948"
Plain left-right arrowUse ↔ (U+2194)
Stroked / negated formUse ↮ (U+21AE)

Live Preview

Left Right Arrow Through Small Circle in common technical contexts.

Relation snippet A ⥈ B
Large glyph ⥈
Named entity ⥈ → ⥈
vs ↔ / ↮ ⥈  |  ↔  |  ↮
With entities Hex: ⥈ | Decimal: ⥈ | Named: ⥈

Complete HTML Example

One page that shows this symbol with hex, decimal, named, and CSS. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All four ways to produce ⥈ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Left Right Arrow Through Small Circle (⥈)</title>
  <style>
    #point::after {
      content: "\2948";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2948;</p>
  <p>Using HTML Code: &#10568;</p>
  <p>Using Named Entity: &harrcir;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>A &harrcir; B</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2948 → &#x2948; in HTML. The browser turns it into ⥈.

2. Decimal: same code point as 10568 → &#10568;. Same result as hex.

3. Named: &harrcir; is the HTML5 name for this character.

4. CSS: use \2948 in content (not an HTML entity). #point::after appends that ⥈ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Left Right Arrow Through Small Circle.

Look-alikes

⥈ ≠ ↔ ≠ ↮

&harrcir; (through circle), &harr; (plain), and &nharr; (stroked) are different characters.

Name

&harrcir; spelling

Keep the trailing cir — that selects the circle form, not plain &harr;.

Fonts

Glyph may be missing

Supplemental Arrows-B coverage varies. Test on your target devices or provide a fallback font.

CSS vs HTML

Do not mix escapes

\2948 belongs in CSS. &harrcir; / &#x2948; / &#10568; belong in HTML.

A11y

Add nearby words

Pair the glyph with relation text (for example A &harrcir; B) or use aria-label when it stands alone.

Semicolon

End references

Always finish with ; — write &harrcir;, not &harrcir.

Browser Support

Left Right Arrow Through Small Circle (U+2948) and its entity forms (&harrcir;, &#x2948;, &#10568;, CSS \\2948) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Left Right Arrow Through Small Circle (&harrcir;)

Encode with named, hex, decimal, or CSS escape — or type ⥈ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+2948 / &harrcir; Full support

Bottom line: Prefer &harrcir; for readable HTML. Use \\2948 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+2948 (decimal 10568).
  • HTML: prefer &harrcir; — or use &#x2948; / &#10568;.
  • CSS: use \2948 inside content for generated text.
  • Watch out: &harrcir; ≠ &harr; ≠ &nharr;.

One line: U+2948 → &harrcir; / &#x2948; / &#10568; / CSS \2948.

Frequently Asked Questions

Use &harrcir; (named), &#x2948; (hex), &#10568; (decimal), or the CSS escape \2948 in the content property. You can also type ⥈ directly in UTF-8 HTML.
U+2948 (LEFT RIGHT ARROW THROUGH SMALL CIRCLE). Hex 2948, decimal 10568. It belongs to the Supplemental Arrows-B block (U+2900–U+297F).
Yes. &harrcir; is the HTML5 named entity. You can also use &#x2948; or &#10568;.
Use it in technical diagrams, chemistry-style reversible notation, and math when you need a left-right arrow passing through a small circle. Prefer &harrcir; for readable HTML.
HTML entities (&harrcir;, &#10568;, or &#x2948;) go in markup. The CSS escape \2948 is used in stylesheets (usually in the content property of ::before/::after). Both render ⥈.
&harr; (U+2194) is a plain left-right arrow. &nharr; (U+21AE) is a left-right arrow with a stroke. &harrcir; (U+2948) is a left-right arrow through a small circle.

Did you know?

Left Right Arrow Through Small Circle is Unicode U+2948 (decimal 10568) — LEFT RIGHT ARROW THROUGH SMALL CIRCLE. HTML5 provides &harrcir;. Prefer it for readable source. Do not confuse it with a plain &harr; (U+2194) or the stroked form &nharr; (U+21AE).

Next: Left Right Arrow Vertical Stroke

Learn the HTML entity for Left Right Arrow Vertical Stroke — next in this sequence.

Continue tutorial →

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