HTML Entity for Heavy Right Pointing Angle Quotation Mark Ornament (❯)

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

What You'll Learn

How to display the Heavy Right Pointing Angle Quotation Mark Ornament (❯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+276F (HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It is a heavy right-pointing angle quotation mark—ideal for closing quotes, block quotations, pull quotes, navigation cues, and decorative typography paired with U+276E (❮).

Render it with ❯, ❯, or CSS escape \276F. There is no named HTML entity. Do not confuse ❯ with U+2771 (❱, angle bracket ornament) or U+00BB (», guillemet); each symbol has a different shape and typographic role.

⚡ Quick Reference — Right Angle Quotation

Unicode U+276F

Dingbats block

Hex Code ❯

Hexadecimal reference

HTML Code ❯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+276F
Hex code       ❯
HTML code      ❯
Named entity   (none)
CSS code       \276F
Meaning        Heavy right angle quotation ornament
Related        U+276E = left quote (❮)
               U+2771 = right bracket (❱)
               U+00BB = guillemet (»)
1

Complete HTML Example

This example demonstrates the Heavy Right Pointing Angle Quotation Mark Ornament (❯) using hexadecimal code, decimal HTML code, and CSS content on a semantic blockquote (paired with ❮):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\276F";
  }
 </style>
</head>
<body>
<p>Right Angle Quote using Hexadecimal: &#x276F;</p>
<p>Right Angle Quote using HTML Code: &#10095;</p>
<p id="point">Right Angle Quote using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Right Pointing Angle Quotation Mark Ornament (❯) is widely supported in modern browsers when the font includes Dingbats quotation glyphs:

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

👀 Live Preview

Heavy Right Pointing Angle Quotation Mark Ornament (❯) in context, paired with the left quote:

Pull quote ❮ Sample quotation text ❯
Read more Read more ❯
Large glyph
Comparison ❯   ❱   »
Numeric refs &#x276F; &#10095; \276F

🧠 How It Works

1

Hexadecimal Code

&#x276F; uses the Unicode hexadecimal value 276F to display the right angle quotation ornament. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\276F is used in CSS stylesheets, particularly in content on ::after for blockquote closers and link suffixes.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+276F pairs with U+276E (❮). Next: Round Tipped Arrow (➜).

Use Cases

The Heavy Right Pointing Angle Quotation Mark Ornament (❯) is commonly used in:

❯ Quotes

Closing angle quotation for block quotes, pull quotes, and styled quotations.

📖 Navigation

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

📋 Lists

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

📝 Typography

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

🔨 CSS content

content: "\276F" on ::after without extra markup.

📱 UI controls

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

💡 Best Practices

Do

  • Use semantic <blockquote> for quoted content
  • Pair with U+276E (❮) for balanced quote framing
  • Add visible text or aria-label when ❯ indicates an action
  • Apply content: "\276F" via ::after on closers and links
  • Declare UTF-8 with <meta charset="utf-8">
  • Mark decorative quote marks with aria-hidden="true" when redundant with text

Don’t

  • Replace accessible quote semantics with glyphs alone
  • Confuse U+276F (❯) with U+2771 (❱) or »
  • Expect a named HTML entity for U+276F
  • Use CSS \276F in HTML text nodes
  • Use ❯ as the only indicator of a primary navigation action without labels

Key Takeaways

1

Two HTML numeric references plus CSS insert U+276F

&#x276F; &#10095;
2

For CSS, use \276F in the content property

3

Unicode U+276F — heavy right angle quotation (❯)

4

Pairs with left quote U+276E (❮); distinct from U+2771 (❱)

❓ Frequently Asked Questions

Use &#x276F; (hex), &#10095; (decimal), or \276F in CSS content. There is no named entity. All three methods render the symbol (❯) correctly.
U+276F (HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT). Dingbats block. Hex 276F, decimal 10095. The symbol (❯) is a heavy right-pointing angle quotation mark, often used for closing quotes, navigation, and decorative typography.
For closing quotation marks and block quotes, navigation and menu indicators, list bullets and hierarchy, next/forward cues, and decorative typography and headers.
HTML references (&#10095; or &#x276F;) go in markup. The CSS escape \276F is used in stylesheets, typically on ::after for blockquotes and links. Both produce ❯.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+276F uses numeric hex (&#x276F;) or decimal (&#10095;) codes, which is standard for Dingbats ornamental quotation marks.

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