HTML Entity for Wedge Tailed Right Arrow (➼)

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

What You'll Learn

How to display the Wedge Tailed Right Arrow symbol (➼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27BC (WEDGE-TAILED RIGHTWARDS ARROW) in the Dingbats block—a right-pointing arrow with a wedge-shaped tail used in logic notation, math documentation, and directional UI.

Render it with ➼, ➼, or CSS escape \27BC. There is no named HTML entity. Do not confuse ➼ with wave arrow ⤳ (U+2933, Supplemental Arrows-B) or simple right arrow (U+2192).

⚡ Quick Reference — Wedge Tailed Right Arrow Entity

Unicode U+27BC

Dingbats

Hex Code ➼

Hexadecimal reference

HTML Code ➼

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27BC
Hex code       ➼
HTML code      ➼
Named entity   (none)
CSS code       \27BC
Meaning        Wedge-tailed rightwards arrow
Related        U+2933 = ⤳ (wave arrow right, ⤳)
               U+2192 = → (rightwards arrow, →)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Wedge Tailed Right Arrow symbol (➼) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27BC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27BC;</p>
<p>Symbol (decimal): &#10172;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Wedge Tailed Right Arrow symbol (➼) is supported in modern browsers when the font includes Dingbats glyphs:

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

👀 Live Preview

See the Wedge Tailed Right Arrow symbol rendered live:

Logic stepPremise ➼ Conclusion
Large glyph
NavigationContinue ➼
Not the same as⤳ (U+2933, wave arrow)  |  → (&rarr;)
Numeric refs&#x27BC; &#10172; \27BC

🧠 How It Works

1

Hexadecimal Code

&#x27BC; uses the Unicode hexadecimal value 27BC to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10172; uses the decimal Unicode value 10172 to display the same character. A common method for Dingbats arrow symbols.

HTML markup
3

CSS Entity

\27BC 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+27BC sits in Dingbats. Not the same as ⤳ (wave arrow) or &rarr; (→).

Use Cases

The Wedge Tailed Right Arrow symbol (➼) is commonly used in:

➡ Logical expressions

Formal logic, proofs, and implication-style notation.

📐 Math symbols

Mathematical documentation and academic papers.

🌐 Web notation

Online math content and educational web applications.

📚 Math documentation

Textbooks, research papers, and logic course materials.

🖥 Programming docs

Algorithm descriptions and technical arrow notation.

🎓 Educational content

Tutorials and instructional logic/mathematics content.

🔬 Scientific content

Research documentation requiring precise arrow notation.

💡 Best Practices

Do

  • Pair ➼ with accessible text or aria-label in navigation
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Dingbats characters
  • Distinguish ➼ from ⤳ and → (&rarr;)

Don’t

  • Confuse ➼ (U+27BC, Dingbats) with ⤳ (U+2933, wave arrow)
  • Substitute when ➼ is specifically required
  • Mix entity styles randomly in one file
  • Use CSS escape \27BC inside HTML markup
  • Expect a named HTML entity—none exists for ➼

Key Takeaways

1

Type ➼ directly, or use hex/decimal references

&#x27BC; &#10172;
2

For CSS stylesheets, use the escape in the content property

\27BC
3

Unicode U+27BC — WEDGE-TAILED RIGHTWARDS ARROW (Dingbats)

4

Not the same as ⤳ (wave arrow) or → (&rarr;)

❓ Frequently Asked Questions

Use &#x27BC; (hex), &#10172; (decimal), or \27BC in CSS content. There is no named HTML entity. In UTF-8 you can also type ➼ directly.
U+27BC (WEDGE-TAILED RIGHTWARDS ARROW). Dingbats block. Hex 27BC, decimal 10172. Related wave arrow is U+2933 (⤳, &rarrc;) in Supplemental Arrows-B.
In logical expressions, mathematical documentation, web notation, programming docs, educational content, and any material needing a specialized right-pointing wedge-tailed arrow.
HTML entities (&#10172; or &#x27BC;) go directly in markup. The CSS escape \27BC is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Dingbats like ➼ use numeric codes. Use &#10172; or &#x27BC; in HTML, or \27BC in CSS.

Explore More HTML Entities!

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