HTML Entity for Heavy Right Pointing Angle Bracket Ornament (❱)

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

What You'll Learn

How to display the Heavy Right Pointing Angle Bracket Ornament (❱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2771 (HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a heavy right-pointing angle bracket—ideal for navigation cues, list markers, “next” or “forward” indicators, paired callouts with U+2770 (❰), and decorative typography beyond ASCII >.

Render it with ❱, ❱, or CSS escape \2771. There is no named HTML entity. Do not confuse ❱ with U+276F (❯, angle quotation mark) or U+2799 (➙, heavy right arrow); each Dingbats symbol has a different shape and role.

⚡ Quick Reference — Right Angle Bracket

Unicode U+2771

Dingbats block

Hex Code ❱

Hexadecimal reference

HTML Code ❱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2771
Hex code       ❱
HTML code      ❱
Named entity   (none)
CSS code       \2771
Meaning        Heavy right angle bracket ornament
Related        U+2770 = left bracket (❰)
               U+276F = angle quotation (❯)
               U+2799 = heavy right arrow (➙)
1

Complete HTML Example

This example demonstrates the Heavy Right Pointing Angle Bracket Ornament (❱) using hexadecimal code, decimal HTML code, and CSS content on a paired callout and Next link (with ❰):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2771";
  }
 </style>
</head>
<body>
<p>Right Bracket using Hexadecimal: &#x2771;</p>
<p>Right Bracket using HTML Code: &#10097;</p>
<p id="point">Right Bracket using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Right Pointing Angle Bracket Ornament (❱) is widely supported in modern browsers when the font includes Dingbats bracket glyphs:

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

👀 Live Preview

Heavy Right Pointing Angle Bracket Ornament (❱) in context, paired with the left bracket:

Paired callout ❰ Highlighted note ❱
Next link Next ❱
Large glyph
Comparison ❱   >   ❯
Numeric refs &#x2771; &#10097; \2771

🧠 How It Works

1

Hexadecimal Code

&#x2771; uses the Unicode hexadecimal value 2771 to display the right angle bracket ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2771 is used in CSS stylesheets, particularly in content on ::after for Next links, callout closers, and list markers.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2771 pairs with U+2770 (❰). Next: Angle Quotation (❯).

Use Cases

The Heavy Right Pointing Angle Bracket Ornament (❱) is commonly used in:

❱ Navigation

Link indicators, “next” or “more” cues in navigation, dropdowns, and breadcrumbs.

📋 Lists

Custom list bullets, nested list markers, and hierarchy indicators.

🔄 Forward

“Next” or “Continue” in wizards, pagination, and step indicators.

📝 Typography

Headers, section dividers, and typographic accents with angle-bracket style.

🔨 CSS content

content: "\2771" on ::after without extra markup.

📱 UI controls

Expand/collapse indicators, accordion arrows, and directional controls.

💡 Best Practices

Do

  • Pair with U+2770 (❰) for balanced callout framing
  • Add visible text or aria-label when ❱ indicates an action
  • Use content: "\2771" via ::after on Next links
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Mark decorative-only brackets with aria-hidden="true" when appropriate

Don’t

  • Use glyph-only controls without accessible names for primary actions
  • Confuse U+2771 (❱) with U+276F (❯) or U+2799 (➙)
  • Expect a named HTML entity for U+2771
  • Use CSS \2771 in HTML text nodes
  • Substitute ASCII > when the ornamental Dingbats style is required

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2771

&#x2771; &#10097;
2

For CSS, use \2771 in the content property

3

Unicode U+2771 — heavy right angle bracket (❱)

4

Pairs with left bracket U+2770 (❰); distinct from U+276F (❯)

❓ Frequently Asked Questions

Use &#x2771; (hex), &#10097; (decimal), or \2771 in CSS content. There is no named entity. All three methods render the symbol (❱) correctly.
U+2771 (HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT). Dingbats block. Hex 2771, decimal 10097. The symbol (❱) is a heavy right-pointing angle bracket, often used for navigation, lists, and decorative typography.
For navigation and menu indicators, list bullets and hierarchy, next/forward cues, decorative typography and headers, call-to-action links, and expand/collapse UI controls.
HTML references (&#10097; or &#x2771;) go in markup. The CSS escape \2771 is used in stylesheets, typically on ::after for links and callouts. Both produce ❱.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2771 uses numeric hex (&#x2771;) or decimal (&#10097;) codes, which is standard for Dingbats ornamental brackets.

Explore More HTML Entities!

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