HTML Entity for Open Outlined Right Arrow (➾)

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

What You'll Learn

How to display the Open Outlined Right Arrow (➾) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+27BE (OPEN OUTLINED RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—an outlined right-pointing arrow useful for navigation links, next buttons, breadcrumbs, carousel controls, and directional UI cues.

Render it with ➾, ➾, or CSS escape \27BE. There is no named HTML entity. Do not confuse ➾ with U+2192 (→, basic rightwards arrow), U+27BD (➽, heavy wedge-tailed right arrow), or U+279C (➜, heavy round-tipped rightwards arrow).

⚡ Quick Reference — Outlined Right Arrow

Unicode U+27BE

Dingbats block

Hex Code ➾

Hexadecimal reference

HTML Code ➾

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27BE
Hex code       ➾
HTML code      ➾
Named entity   (none)
CSS code       \27BE
Meaning        Open outlined rightwards arrow
Related        U+2192 = rightwards arrow (→)
               U+27BD = wedge-tailed right (➽)
               U+279C = heavy round-tipped right (➜)
               U+2794 = heavy wide-headed right (➔)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ➾ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\27BE";
  }
 </style>
</head>
<body>
<p>Outlined right arrow (hex): &#x27BE;</p>
<p>Outlined right arrow (decimal): &#10174;</p>
<p id="point">Outlined right arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Open Outlined Right Arrow (➾) is widely supported in all modern browsers:

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

👀 Live Preview

See the Open Outlined Right Arrow (➾) in navigation and UI contexts:

Single symbol
Next link Read more ➾
Breadcrumb Home ➾ HTML ➾ Entities
Not the same as Basic →  |  Wedge ➽  |  Round ➜
Numeric refs &#x27BE; &#10174; \27BE

🧠 How It Works

1

Hexadecimal Code

&#x27BE; uses the Unicode hexadecimal value 27BE to display the open outlined right arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27BE is used in CSS stylesheets in the content property of pseudo-elements like ::after on links and buttons for arrow indicators.

CSS stylesheet
=

Navigation arrow result

All three methods render . Unicode U+27BE in the Dingbats block. Next: Opposition (☍).

Use Cases

The Open Outlined Right Arrow (➾) is commonly used in:

🔗 Navigation links

“Read more”, “Next”, and continue links with a lightweight arrow suffix.

🛠 UI controls

Carousel next buttons, pagination, and step indicators without SVG icons.

📑 Breadcrumbs

Path separators and hierarchy cues in breadcrumb trails and menus.

📤 External links

Directional indicators on outbound or off-site link labels.

💻 Web components

Icon-like symbols in tabs, accordions, and expandable sections.

📋 Unicode references

Character pickers, entity documentation, and Dingbats arrow guides.

♿ Accessibility

Pair ➾ with visible link text; use ARIA labels on icon-only controls.

💡 Best Practices

Do

  • Use &#x27BE; or &#10174; inline after link text
  • Use CSS \27BE in ::after for consistent link arrows
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project for consistency
  • Provide accessible text or ARIA on icon-only arrow buttons

Don’t

  • Confuse ➾ with basic arrow →, wedge ➽, or round ➜
  • Use padded Unicode notation like U+027BE—the correct value is U+27BE
  • Use CSS escape \27BE in HTML text nodes
  • Rely on ➾ alone as the only label for a navigation control
  • Assume every font renders Dingbats arrows identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+27BE

&#x27BE; &#10174;
2

For CSS stylesheets, use \27BE in the content property

3

Unicode U+27BE — OPEN OUTLINED RIGHTWARDS ARROW

4

Ideal for navigation, next links, and directional UI cues

❓ Frequently Asked Questions

Use &#x27BE; (hex), &#10174; (decimal), or \27BE in CSS content. There is no named entity. All three render ➾.
U+27BE (OPEN OUTLINED RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27BE, decimal 10174.
No. ➾ (U+27BE) is a Dingbats outlined arrow with a distinct heavier style. → (U+2192) is RIGHTWARDS ARROW in the Arrows block—a simpler line arrow.
For navigation cues, next links, breadcrumbs, carousel controls, external-link indicators, and any UI needing a lightweight outlined right arrow without image assets.
Named HTML entities cover a subset of common characters. U+27BE uses numeric hex or decimal codes or CSS escapes, which is standard for Dingbats arrow symbols.

Explore More HTML Entities!

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