HTML Entity for Double Right-Pointing Angle Quotation Mark (»)

What You'll Learn
How to display the right guillemet (») in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+00BB (RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK) in the Latin-1 Supplement block (U+0080–U+00FF)—the closing chevron quote used in French, Russian, and many European languages.
Render it with », », », or CSS escape \00BB. Pair with the opening guillemet « («) for balanced quotes: «…».
⚡ Quick Reference — Double Right-Pointing Angle Quotation Mark
U+00BBLatin-1 Supplement block
»Hexadecimal reference
»Decimal reference
»Most readable option
Name Value
──────────── ──────────
Unicode U+00BB
Hex code »
HTML code »
Named entity »
CSS code \00BBComplete HTML Example
This example demonstrates the Double Right-Pointing Angle Quotation Mark symbol (») using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00BB";
}
</style>
</head>
<body>
<p>Double Right-Pointing Angle Quotation Mark using Hexadecimal: »</p>
<p>Double Right-Pointing Angle Quotation Mark using HTML Code: »</p>
<p>Double Right-Pointing Angle Quotation Mark using Named Entity: »</p>
<p id="point">Double Right-Pointing Angle Quotation Mark using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+00BB is universally supported in modern browsers; Latin-1 Supplement glyphs render in virtually all fonts:
👀 Live Preview
See the right guillemet (») in multilingual quotation typography:
🧠 How It Works
Named Entity
» is the HTML named entity for the Double Right-Pointing Angle Quotation Mark (») — raquo means right angle quote.
Hexadecimal Code
» uses the Unicode hexadecimal value 00BB to display the right guillemet. The x prefix indicates hexadecimal format.
Decimal HTML Code
» uses the decimal Unicode value 187 to display the same character.
CSS Entity
\00BB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ». Unicode U+00BB. Pair with « («) for the opening guillemet—not straight quotes (“ ”) unless your locale uses them.
Use Cases
The Double Right-Pointing Angle Quotation Mark symbol (») commonly appears in the following scenarios:
Closing guillemet for quoted text in French (« … ») and other European languages.
Closing quotation mark in Russian and Cyrillic-script content.
Blockquotes, dialogue, and citations with typographically correct guillemets.
Books, articles, and editorial content using angle quotes for the target language.
Multilingual sites with locale-appropriate quotation marks.
Use <q> or <blockquote> with guillemets for semantic quoted content.
💡 Best Practices
Do
- Prefer
»for readable HTML source - Pair » with « (
«) for balanced guillemets - Use
<q>or<blockquote>for semantic quoted content - Set
langattributes on localized content (e.g.lang="fr") - Pick one entity style per project for consistency
Don’t
- Confuse » (
») with « («, opening) - Use CSS escape
\00BBinside HTML markup - Mix guillemets and straight quotes inconsistently in one locale
- Use » for English curly closing quotes—use
”(U+201D) instead - Forget UTF-8 (
<meta charset="utf-8">) on multilingual pages
Key Takeaways
Four ways to render » in HTML
» » »For CSS stylesheets, use the escape in the content property
\00BBUnicode U+00BB — closing right guillemet
Prefer » for readability in HTML source
Open « («) vs close » (»)
❓ Frequently Asked Questions
» (named), » (hex), » (decimal), or \00BB in CSS content. All produce ».U+00BB (RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). Latin-1 Supplement block (U+0080–U+00FF). Hex BB, decimal 187. Closing guillemet in French, Russian, and many languages.« («, U+00AB) is the opening left guillemet. » (», U+00BB) is the closing right guillemet. Use both for balanced quotes: «…».» (raquo = right angle quote) is the named HTML entity for U+00BB. It renders as » and is the most readable option when writing HTML by hand.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
