HTML Entity for Right Arrow With Circled Plus (⟴)

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

What You'll Learn

How to display the Right Arrow With Circled Plus (⟴) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+27F4 (RIGHTWARDS ARROW WITH CIRCLED PLUS) in the Supplemental Arrows-A block (U+27F0–U+27FF)—a rightward arrow with a circled plus, used for UI design, add buttons, expand functionality, and interactive navigation.

Render it with ⟴, ⟴, or CSS \27F4. There is no named HTML entity. Related: U+27F3 (⟳, left arrow with circled plus), U+2945 (⥅, right arrow plus below / ⥅). Do not confuse ⟴ with plain → or ⊕ alone.

⚡ Quick Reference — Right Arrow With Circled Plus

Unicode U+27F4

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

Hex Code ⟴

Hexadecimal reference

HTML Code ⟴

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27F4
Hex code       ⟴
HTML code      ⟴
Named entity   (none)
CSS code       \27F4
Meaning        Rightwards arrow with circled plus
Related        U+27F3 = left arrow with circled plus (⟳)
               U+2945 = right arrow plus below (⥅, ⥅)
               U+21B4 = right arrow with corner down (↴)
Block          Supplemental Arrows-A (U+27F0–U+27FF)
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: "\27F4";
  }
 </style>
</head>
<body>
<p>Hex: &#x27F4;</p>
<p>Decimal: &#10228;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+27F4 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 With Circled Plus (⟴) in common UI contexts:

Add action Create new ⟴
Expand Show more ⟴
Large glyph
Arrow comparison ⟳ ⟴ →
Numeric refs &#x27F4; &#10228; \27F4

🧠 How It Works

1

Hexadecimal Code

&#x27F4; uses the Unicode hexadecimal value 27F4. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+27F4 in the Supplemental Arrows-A block. No named entity—use numeric codes. Previous: Right Arrow Vertical Stroke (⇸). Next: Right Arrow With Corner Down (↴).

Use Cases

The Right Arrow With Circled Plus (⟴) is commonly used in:

🛠 UI design

Buttons and controls that combine direction with add or create actions.

➕ Add buttons

Create, add, and new-item actions with a directional arrow accent.

💻 Interactive elements

Forms and UI that need expand or add functionality with direction.

🗺 Navigation with actions

Menus and action bars combining navigation with add/create cues.

📂 Expand functionality

Expandable sections and collapsible content indicators.

♿ Accessibility

Pair ⟴ with plain language (e.g. “add” or “expand”) for screen readers.

💡 Best Practices

Do

  • Use &#x27F4; or &#10228; in HTML (no named entity exists)
  • Use ⟴ when add/expand needs a directional arrow context
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \27F4 for decorative arrows in pseudo-elements
  • Add accessible labels for add and expand actions

Don’t

  • Confuse ⟴ (U+27F4) with ⟳ (U+27F3), ⥅ (U+2945), or plain →
  • Use padded Unicode notation like U+027F4—the correct value is U+27F4
  • Use CSS escape \27F4 in HTML text nodes
  • Use padded CSS like \027F4—prefer \27F4
  • Rely on the symbol alone without text for critical add actions

Key Takeaways

1

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

&#x27F4; &#10228;
2

For CSS, use \27F4 in the content property

3

Unicode U+27F4 — RIGHTWARDS ARROW WITH CIRCLED PLUS (⟴)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x27F4; (hex), &#10228; (decimal), or \27F4 in CSS content. There is no named HTML entity. All three render ⟴.
U+27F4 (RIGHTWARDS ARROW WITH CIRCLED PLUS). Supplemental Arrows-A block (U+27F0–U+27FF). Hex 27F4, decimal 10228.
For user interface design, add buttons, expand functionality, interactive elements, navigation with add actions, and content that needs direction combined with addition.
Numeric HTML references (&#10228;, &#x27F4;) go in markup. The CSS escape \27F4 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 (&#x27F4;) or decimal (&#10228;) 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