HTML Entity for Double Left-Pointing Angle Quotation Mark («)

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

What You'll Learn

How to display the left guillemet («) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+00AB (LEFT-POINTING DOUBLE ANGLE QUOTATION MARK) in the Latin-1 Supplement block (U+0080–U+00FF)—the opening chevron quote used in French, Russian, and many European languages.

Render it with «, «, «, or CSS escape \00AB. Pair with the closing guillemet » (») for balanced quotes: «…».

⚡ Quick Reference — Double Left-Pointing Angle Quotation Mark

Unicode U+00AB

Latin-1 Supplement block

Hex Code «

Hexadecimal reference

HTML Code «

Decimal reference

Named Entity «

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00AB
Hex code       «
HTML code      «
Named entity   «
CSS code       \00AB
1

Complete HTML Example

This example demonstrates the Double Left-Pointing Angle Quotation Mark symbol («) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00AB";
  }
 </style>
</head>
<body>
<p>Double Left-Pointing Angle Quotation Mark using Hexadecimal: &#xAB;</p>
<p>Double Left-Pointing Angle Quotation Mark using HTML Code: &#171;</p>
<p>Double Left-Pointing Angle Quotation Mark using Named Entity: &laquo;</p>
<p id="point">Double Left-Pointing Angle Quotation Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+00AB is universally supported in modern browsers; Latin-1 Supplement glyphs render in virtually all fonts:

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

👀 Live Preview

See the left guillemet («) in multilingual quotation typography:

French quote «Bonjour»
Large glyph «
Opening vs closing « &laquo; open   » &raquo; close
Named entity &laquo; → «
Monospace refs &laquo; &#xAB; &#171; \00AB

🧠 How It Works

1

Named Entity

&laquo; is the HTML named entity for the Double Left-Pointing Angle Quotation Mark («) — the most readable option in source code.

HTML markup
2

Hexadecimal Code

&#xAB; uses the Unicode hexadecimal value 00AB to display the Double Left-Pointing Angle Quotation Mark symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00AB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: «. Unicode U+00AB. Pair with &raquo; (») for the closing guillemet—not straight quotes (“ ”) unless your locale uses them.

Use Cases

The Double Left-Pointing Angle Quotation Mark symbol («) commonly appears in the following scenarios:

🇫🇷 French & European

Opening guillemet for quoted text in French (« … ») and other European languages.

🇷🇺 Russian & Cyrillic

Opening quotation mark in Russian and Cyrillic-script content.

✍️ Dialogue & citations

Blockquotes, dialogue, and citations with typographically correct guillemets.

📝 Publishing

Books, articles, and editorial content using angle quotes for the target language.

🌐 Localization

Multilingual sites with locale-appropriate quotation marks.

♿ Accessibility

Use <q> or <blockquote> with guillemets for semantic quoted content.

💡 Best Practices

Do

  • Prefer &laquo; for readable HTML source
  • Pair « with » (&raquo;) for balanced guillemets
  • Use <q> or <blockquote> for semantic quoted content
  • Set lang attributes on localized content (e.g. lang="fr")
  • Pick one entity style per project for consistency

Don’t

  • Confuse « (&laquo;) with » (&raquo;, closing)
  • Use CSS escape \00AB inside HTML markup
  • Mix guillemets and straight quotes inconsistently in one locale
  • Forget UTF-8 (<meta charset="utf-8">) on multilingual pages
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Four ways to render « in HTML

&#xAB; &#171; &laquo;
2

For CSS stylesheets, use the escape in the content property

\00AB
3

Unicode U+00AB — opening left guillemet

4

Prefer &laquo; for readability in HTML source

5

Open « (&laquo;) vs close » (&raquo;)

❓ Frequently Asked Questions

Use &laquo; (named), &#xAB; (hex), &#171; (decimal), or \00AB in CSS content. All produce «.
U+00AB (LEFT-POINTING DOUBLE ANGLE QUOTATION MARK). Latin-1 Supplement block (U+0080–U+00FF). Hex AB, decimal 171. Opening guillemet in French, Russian, and many languages.
When you need opening guillemets in French, Russian, Spanish, and other languages that use angle quotes; typography; publishing; and multilingual or localized content.
&laquo; («, U+00AB) is the opening left guillemet. &raquo; (», U+00BB) is the closing right guillemet. Use both for balanced quotes: «…».
&laquo; (laquo = left angle quote) is the named HTML entity for U+00AB. 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.

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