HTML Entity for Teardrop Barbed Right Arrow (➺)

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

What You'll Learn

How to display the Teardrop Barbed Right Arrow (➺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27BA (TEARDROP-BARBED RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a decorative right-pointing arrow with a teardrop-shaped head and barbed tail for navigation and UI design.

Render it with ➺, ➺, or CSS escape \27BA. There is no named HTML entity. Do not confuse ➺ with ➻ (heavy teardrop shanked right arrow, U+27BB) or ➾ (open outlined right arrow, U+27BE).

⚡ Quick Reference — Teardrop Barbed Right Arrow

Unicode U+27BA

Dingbats

Hex Code ➺

Hexadecimal reference

HTML Code ➺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27BA
Hex code       ➺
HTML code      ➺
Named entity   (none)
CSS code       \27BA
Block          Dingbats (U+2700–U+27BF)
Related        U+27BB = Heavy Teardrop Shanked (➻), U+27BE = Open Outlined (➾)
1

Complete HTML Example

This example demonstrates the Teardrop Barbed Right Arrow (➺) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27BA";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x27BA;</p>
<p>Using HTML Code: &#10170;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Teardrop Barbed Right Arrow is supported in all modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Teardrop Barbed Right Arrow (➺) in navigation context and compared with nearby Dingbats arrows:

Navigation Next ➺
Large glyph
Nearby arrows ➺ barbed   ➻ heavy teardrop   ➾ open outlined
Numeric refs &#x27BA; &#10170; \27BA

🧠 How It Works

1

Hexadecimal Code

&#x27BA; uses the Unicode hexadecimal value 27BA to display the Teardrop Barbed Right Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27BA is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+27BA in the Dingbats block (U+2700–U+27BF). No named entity.

Use Cases

The Teardrop Barbed Right Arrow (➺) commonly appears in:

🚀 Navigation

Menus, breadcrumbs, and next-step indicators.

🖥 User Interfaces

Buttons, tabs, and interactive controls.

🎨 Web Design

Decorative directional elements in layouts.

🗺 Wayfinding

Directional indicators and flow diagrams.

🔗 Links

Forward links and call-to-action elements.

📱 Mobile UI

Swipe hints and carousel next controls.

📄 Documentation

Step-by-step guides and tutorial flows.

💡 Best Practices

Do

  • Use &#x27BA; or &#10170; for the arrow glyph
  • Add aria-label="Next" or visible text for accessibility
  • Pick one style (hex or decimal) per project for consistency
  • Use CSS to scale the symbol to match your UI design
  • Test rendering across browsers and devices

Don’t

  • Confuse ➺ with ➻ (heavy teardrop shanked) or ➾ (open outlined)
  • Rely on the symbol alone without accessible labeling
  • Put CSS escape \27BA directly in HTML text nodes
  • Expect a named HTML entity for U+27BA—use numeric references
  • Use HTML entities in JS (use \u27BA instead)

Key Takeaways

1

Two HTML references both render ➺

&#x27BA; &#10170;
2

For CSS stylesheets, use the escape in the content property

\27BA
3

Unicode U+27BA — TEARDROP-BARBED RIGHTWARDS ARROW

4

No named entity—use numeric references or CSS escape

5

Part of Dingbats (U+2700–U+27BF) alongside other decorative arrows

❓ Frequently Asked Questions

Use &#x27BA; (hex), &#10170; (decimal), or \27BA in CSS content. There is no named HTML entity. All three produce ➺.
U+27BA (TEARDROP-BARBED RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27BA, decimal 10170.
In navigation icons, user interfaces, directional indicators, buttons, links, wayfinding systems, and any content that needs a decorative right-pointing arrow.
HTML numeric references (&#10170; or &#x27BA;) go directly in markup. The CSS escape \27BA is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ➺ in the Dingbats block use numeric hex or decimal references—standard practice for decorative directional characters.

Explore More HTML Entities!

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