HTML Entity for Double High-Reversed-9 Quotation Mark (‟)

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

What You'll Learn

How to display the Double High-Reversed-9 Quotation Mark (‟) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+201F in the General Punctuation block (U+2000–U+206F)—an opening double quotation mark with a high-reversed-9 typographic shape.

It has the same semantic meaning as the left double quotation mark (“, U+201C “) but a distinct appearance. There is no named HTML entity for U+201F; use ‟, ‟, or \201F in CSS content. Pair with a closing quote such as ” (U+201D ”).

⚡ Quick Reference — Double High-Reversed-9 Quotation Mark

Unicode U+201F

General Punctuation block

Hex Code ‟

Hexadecimal reference

HTML Code ‟

Decimal reference

Named Entity

Not available for U+201F

Reference Table
Name           Value
────────────   ──────────
Unicode        U+201F
Hex code       ‟
HTML code      ‟
Named entity   —
CSS code       \201F
1

Complete HTML Example

This example demonstrates the Double High-Reversed-9 Quotation Mark symbol (‟) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\201F";
  }
 </style>
</head>
<body>
<p>Double High-Reversed-9 Quotation Mark using Hexadecimal: &#x201F;</p>
<p>Double High-Reversed-9 Quotation Mark using HTML Code: &#8223;</p>
<p id="point">Double High-Reversed-9 Quotation Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+201F is supported in modern browsers; use a font with General Punctuation coverage for consistent display:

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

👀 Live Preview

See the opening double quote (‟) in quoted text and typography:

Quoted ‟Hello world”
Blockquote ‟To be or not to be”
vs U+201C ‟ reversed-9   “ standard left double
Large glyph
Monospace refs &#x201F; &#8223; \201F

🧠 How It Works

1

Hexadecimal Code

&#x201F; uses the Unicode hexadecimal value 201F to display the Double High-Reversed-9 Quotation Mark symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\201F is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+201F is an opening double quote in General Punctuation. Semantically like &ldquo; (U+201C) with a different glyph. No named entity for U+201F.

Use Cases

The Double High-Reversed-9 Quotation Mark symbol (‟) is commonly used in:

📖 Typography & publishing

Books, articles, and editorial content where opening quotes use the reversed-9 style (‟).

🌐 Multilingual content

Locale-specific quotation style in European and other writing traditions.

💬 Quoted text

Dialogue, citations, and blockquotes with ‟ … ” pairs.

🎨 Design & branding

UI copy and marketing materials that specify reversed-9 opening quotes.

♿ Semantic markup

Use with <q> or <blockquote> plus entities for correct structure.

🔤 Symbol references

Unicode and HTML entity guides for quotation marks.

💡 Best Practices

Do

  • Use &#x201F; or &#8223; for the ‟ character
  • Pair ‟ with a closing quote (&rdquo; U+201D) for balanced quoted text
  • Use \201F only inside CSS content
  • Wrap quotes in <q> or <blockquote> for semantics
  • Keep hex or decimal style and quotation style consistent across the site

Don’t

  • Assume a named entity exists for U+201F—use numeric codes or CSS only
  • Mix ‟ and “ opening styles randomly on the same site
  • Leave closing quotes unmatched in quoted passages
  • Put CSS escape \201F in HTML text nodes
  • Use decorative quote glyphs without semantic markup when meaning matters

Key Takeaways

1

No named entity—use numeric references

&#x201F; &#8223;
2

For CSS stylesheets, use the escape in the content property

\201F
3

Unicode U+201F DOUBLE HIGH-REVERSED-9 QUOTATION MARK

4

Opening double quote; pair with ” or locale-appropriate closing mark

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x201F; (hex), &#8223; (decimal), or \201F in CSS content. There is no named HTML entity. All three methods render ‟.
U+201F (DOUBLE HIGH-REVERSED-9 QUOTATION MARK). General Punctuation block (U+2000–U+206F). Hex 201F, decimal 8223. Opening double quote; same meaning as U+201C with reversed-9 typography.
For typographic or locale-specific opening double quotes, multilingual sites, publishing, blockquotes, and design systems that require the high-reversed-9 style instead of standard “.
Both are opening double quotation marks. U+201C (“, &ldquo;) is the standard left double quote. U+201F (‟) is the double high-reversed-9 form—same meaning, different shape. Use U+201F when design or locale calls for reversed-9 style.
HTML numeric references (&#8223; or &#x201F;) go in markup. The CSS escape \201F is used in stylesheets, typically in the content property of pseudo-elements. Both render ‟.

Explore More HTML Entities!

Discover 1500+ HTML character references — quotation marks, punctuation, arrows, 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