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

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
U+276FDingbats block
❯Hexadecimal reference
❯Decimal reference
—Use numeric codes only
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 (»)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 ❮):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\276F";
}
</style>
</head>
<body>
<p>Right Angle Quote using Hexadecimal: ❯</p>
<p>Right Angle Quote using HTML Code: ❯</p>
<p id="point">Right Angle Quote using CSS Entity</p>
</body>
</html>🌐 Browser Support
The Heavy Right Pointing Angle Quotation Mark Ornament (❯) is widely supported in modern browsers when the font includes Dingbats quotation glyphs:
👀 Live Preview
Heavy Right Pointing Angle Quotation Mark Ornament (❯) in context, paired with the left quote:
🧠 How It Works
Hexadecimal Code
❯ uses the Unicode hexadecimal value 276F to display the right angle quotation ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❯ uses the decimal Unicode value 10095 to display the same character.
CSS Entity
\276F is used in CSS stylesheets, particularly in content on ::after for blockquote closers and link suffixes.
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:
Closing angle quotation for block quotes, pull quotes, and styled quotations.
Link indicators, “next” or “more” cues in navigation and breadcrumbs.
Custom list bullets, nested list markers, and hierarchy indicators.
Headers, section dividers, and typographic accents with angle-quote style.
content: "\276F" on ::after without extra markup.
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-labelwhen ❯ indicates an action - Apply
content: "\276F"via::afteron 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
\276Fin HTML text nodes - Use ❯ as the only indicator of a primary navigation action without labels
Key Takeaways
Two HTML numeric references plus CSS insert U+276F
❯ ❯For CSS, use \276F in the content property
Unicode U+276F — heavy right angle quotation (❯)
Pairs with left quote U+276E (❮); distinct from U+2771 (❱)
Next: Round Tipped Arrow (➜)
❓ Frequently Asked Questions
❯ (hex), ❯ (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.❯ or ❯) go in markup. The CSS escape \276F is used in stylesheets, typically on ::after for blockquotes and links. Both produce ❯.❯) or decimal (❯) codes, which is standard for Dingbats ornamental quotation marks.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
