HTML Entity for Up Two Headed Arrow Small Circle (⥉)

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

What You'll Learn

How to display the Up Two Headed Arrow Small Circle (⥉) in HTML using hexadecimal, decimal, the named entity ⥉, and CSS escape methods. This character is U+2949 (UPWARDS TWO-HEADED ARROW WITH SMALL CIRCLE) in the Supplemental Arrows-B block (U+2900–U+297F)—a two-headed upward arrow with a small circle, used in logic notation, technical documentation, and specialized mathematical notation.

Render it with ⥉, ⥉, ⥉, or CSS escape \2949. Do not confuse ⥉ (U+2949, with circle) with ↟ (U+219F, up arrow two headed without a circle).

⚡ Quick Reference — Up Two Headed Arrow Small Circle

Unicode U+2949

Supplemental Arrows-B

Hex Code ⥉

Hexadecimal reference

HTML Code ⥉

Decimal reference

Named Entity ⥉

HTML5 named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2949
Hex code       ⥉
HTML code      ⥉
Named entity   ⥉
CSS code       \2949
Official name  UPWARDS TWO-HEADED ARROW WITH SMALL CIRCLE
Related        U+219F = Two headed up (↟); U+290A = Triple up
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥉ with hex, decimal, named entity, and CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2949";
  }
 </style>
</head>
<body>
<p>Small circle (hex): &#x2949;</p>
<p>Small circle (decimal): &#10569;</p>
<p>Small circle (entity): &Uarrocir;</p>
<p id="point">Small circle (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2949 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

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

👀 Live Preview

See the Up Two Headed Arrow Small Circle (⥉) in context:

Large glyph
Logic notation Relation ⥉ constraint
vs two headed ⥉ with circle   ↟ without
Named entity &Uarrocir; → ⥉
All HTML refs &#x2949; &#10569; &Uarrocir;

🧠 How It Works

1

Hexadecimal Code

&#x2949; uses the Unicode hexadecimal value 2949 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Uarrocir; is the HTML5 named entity for U+2949—the most readable option in source markup. Not to be confused with &Uarr; (U+219F).

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2949 in Supplemental Arrows-B (U+2900–U+297F).

Use Cases

The Up Two Headed Arrow Small Circle (⥉) is commonly used in:

🧠 Logic notation

Formal logic and symbolic systems using arrow-with-circle notation.

📄 Technical docs

Engineering specs and technical documentation with specialized arrows.

📐 Math expressions

Equations and formulas requiring bidirectional arrows with circles.

📖 Academic papers

Research and scholarly content with technical arrow notation.

🛠 Symbol systems

Formal diagrams and notation guides that define this glyph.

💻 Web references

Entity lookup pages and Unicode symbol glossaries.

💡 Best Practices

Do

  • Use &Uarrocir; for readable markup when supported
  • Pick one style (hex / decimal / named) per project
  • Add aria-label when the symbol conveys technical meaning
  • Use \2949 in CSS ::before / ::after for reusable icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &Uarrocir; (U+2949, with circle) with &Uarr; (U+219F, without)
  • Put CSS escape \2949 in HTML text nodes
  • Assume every font renders ⥉ clearly at small sizes
  • Mix entity styles randomly in one file
  • Use the symbol without context in accessibility-critical UIs

Key Takeaways

1

Four HTML/CSS references all render ⥉

&#x2949; &#10569; &Uarrocir;
2

For CSS stylesheets, use \2949 in content

3

Unicode U+2949 — UPWARDS TWO-HEADED ARROW WITH SMALL CIRCLE

4

Prefer &Uarrocir; for readability in source markup

5

Not the same as ↟ (&Uarr;, two-headed arrow without circle)

❓ Frequently Asked Questions

Use &#x2949; (hex), &#10569; (decimal), &Uarrocir; (named), or \2949 in CSS content. All produce ⥉.
U+2949 (UPWARDS TWO-HEADED ARROW WITH SMALL CIRCLE). Supplemental Arrows-B (U+2900–U+297F). Hex 2949, decimal 10569.
In logic notation, technical documentation, symbolic representations, mathematical expressions, and specialized notation requiring a two-headed upward arrow with a small circle.
HTML entities (&#10569;, &#x2949;, or &Uarrocir;) go directly in markup. The CSS escape \2949 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &Uarrocir;, &#10569;, and &#x2949; are equivalent in modern browsers and all render ⥉. Do not confuse it with &Uarr; (U+219F, without the small circle).

Explore More HTML Entities!

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