HTML Entity for Right Arrow Small Circle (⇴)

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

What You'll Learn

How to display the Right Arrow Small Circle (⇴) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21F4 (RIGHTWARDS ARROW WITH SMALL CIRCLE) in the Supplemental Arrows-A block (U+21F0–U+21FF)—a rightward arrow with a small circle, used for navigation, icons, directional indicators, and distinctive UI elements.

Render it with ⇴, ⇴, or CSS \21F4. There is no named HTML entity. Related: U+21F3 (⇳, left arrow small circle), U+2945 (⥅, right arrow plus below / ⥅). Do not confuse ⇴ with plain right arrow →.

⚡ Quick Reference — Right Arrow Small Circle

Unicode U+21F4

Supplemental Arrows-A (U+21F0–U+21FF)

Hex Code ⇴

Hexadecimal reference

HTML Code ⇴

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F4
Hex code       ⇴
HTML code      ⇴
Named entity   (none)
CSS code       \21F4
Meaning        Rightwards arrow with small circle
Related        U+21F3 = left arrow small circle (⇳)
               U+2945 = right arrow plus below (⥅, ⥅)
Block          Supplemental Arrows-A (U+21F0–U+21FF)
1

Complete HTML Example

A simple example showing ⇴ using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21F4";
  }
 </style>
</head>
<body>
<p>Hex: &#x21F4;</p>
<p>Decimal: &#8692;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21F4 renders in modern browsers when the font includes Supplemental Arrows-A glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Arrow Small Circle (⇴) in common contexts:

Navigation Home ⇴ Section ⇴ Page
Next step Continue ⇴
Large glyph
Arrow comparison ⇳ ⇴ →
Numeric refs &#x21F4; &#8692; \21F4

🧠 How It Works

1

Hexadecimal Code

&#x21F4; uses the Unicode hexadecimal value 21F4. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8692; uses the decimal Unicode value 8692 for the same character.

HTML markup
3

CSS Entity

\21F4 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21F4 in the Supplemental Arrows-A block. No named entity—use numeric codes. Previous: Right Arrow Plus Below (⥅). Next: Right Arrow Stroke (↛).

Use Cases

The Right Arrow Small Circle (⇴) is commonly used in:

🧭 Web navigation

Menus, breadcrumbs, and links with a distinctive circular arrow style.

🎨 Icons

UI icon sets and buttons needing a unique directional indicator.

🛠 Graphic design

Logos, layouts, and creative content with circular arrow accents.

🗺 Wayfinding

Maps, directions, and guides showing movement or next steps.

💻 UI design

Interactive elements that differ from standard → arrows.

♿ Accessibility

Pair ⇴ with plain language (e.g. “next” or “go to”) for screen readers.

💡 Best Practices

Do

  • Use &#x21F4; or &#8692; in HTML (no named entity exists)
  • Use ⇴ when a small-circle arrow fits your navigation or icon design
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \21F4 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⇴ (U+21F4) with ⇳ (U+21F3) or plain →
  • Use padded Unicode notation like U+021F4—the correct value is U+21F4
  • Use CSS escape \21F4 in HTML text nodes
  • Substitute ASCII -> when the specialized arrow ⇴ is intended
  • Assume all fonts render Supplemental Arrows-A glyphs correctly

Key Takeaways

1

Three ways to render U+21F4 in HTML and CSS

&#x21F4; &#8692;
2

For CSS, use \21F4 in the content property

3

Unicode U+21F4 — RIGHTWARDS ARROW WITH SMALL CIRCLE (⇴)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x21F4; (hex), &#8692; (decimal), or \21F4 in CSS content. There is no named HTML entity. All three render ⇴.
U+21F4 (RIGHTWARDS ARROW WITH SMALL CIRCLE). Supplemental Arrows-A block (U+21F0–U+21FF). Hex 21F4, decimal 8692.
For web navigation, icons, graphic design, directional indicators, navigation menus, and UI elements that need a distinctive rightward arrow with a small circle.
Numeric HTML references (&#8692;, &#x21F4;) go in markup. The CSS escape \21F4 is used in stylesheets, typically on ::before or ::after. Both render ⇴.
Named HTML entities cover common characters; specialized arrow symbols in Unicode blocks like Supplemental Arrows-A use numeric hex (&#x21F4;) or decimal (&#8692;) references instead.

Explore More HTML Entities!

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