HTML Entity for Single High Reversed 9 Quotation Mark (‛)

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

What You'll Learn

How to display the Single High Reversed 9 Quotation Mark (‛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+201B (SINGLE HIGH-REVERSED-9 QUOTATION MARK) in the General Punctuation block (U+2000–U+206F)—a reversed-9 opening quote used in European typography and professional writing.

Render it with ‛, ‛, or CSS \201B. There is no named HTML entity. Do not confuse ‛ with Left Single Quotation Mark U+2018 (‘, ‘) or straight apostrophe U+0027 (').

⚡ Quick Reference — Single High Reversed 9 Quotation Mark

Unicode U+201B

General Punctuation

Hex Code ‛

Hexadecimal reference

HTML Code ‛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+201B
Hex code       ‛
HTML code      ‛
Named entity   (none)
CSS code       \201B
Official name  Single high-reversed-9 quotation mark
Related        U+201A = ‚ (single low-9 closing)
               U+2018 = ‘ (‘)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing ‛ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\201B";
  }
 </style>
</head>
<body>
<p>Quote (hex): &#x201B;Hello&#x201A;</p>
<p>Quote (decimal): &#8219;Hello&#8218;</p>
<p id="point">Quote (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Single High Reversed 9 Quotation Mark (‛) is widely supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the reversed-9 quotation mark in typography contexts:

Single symbol
European quote pair ‛Quoted text‚
In a sentence She said ‛Bonjour‚ quietly.
Not the same as Curly ‘’  |  Straight '
Numeric refs &#x201B; &#8219; \201B

🧠 How It Works

1

Hexadecimal Code

&#x201B; uses Unicode hexadecimal 201B to display the reversed-9 quote.

HTML markup
2

Decimal HTML Code

&#8219; uses decimal Unicode value 8219 for the same character.

HTML markup
3

CSS Entity

\201B is used in CSS stylesheets in the content property of pseudo-elements for quote markers.

CSS stylesheet
=

Typography result

All three methods produce . Unicode U+201B in General Punctuation. No named entity. Pair with low-9 ‚ for closing quotes. Next: Single Left Pointing Angle Quotation Mark.

Use Cases

The Single High Reversed 9 Quotation Mark (‛) commonly appears in:

🎨 Typography

Professional publishing, books, and editorial design with European quotes.

🌐 European languages

German, French, and other locales using reversed-9 quotation style.

📝 Quotes & citations

Dialogue, blockquotes, and referenced text with proper punctuation.

📄 Text formatting

Articles, blogs, and documents requiring typographic quote marks.

📖 Multilingual sites

International content with locale-appropriate quotation marks.

🛠 CSS markers

Custom quote styling via ::before content.

💡 Best Practices

Do

  • Pair ‛ with single low-9 ‚ (U+201A) for European quote pairs
  • Use &#x201B; or &#8219; consistently in HTML markup
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish ‛ from curly quotes ‘’ and straight apostrophe '
  • Test rendering across browsers and fonts

Don’t

  • Use padded Unicode notation like U+0201B—the correct value is U+201B
  • Substitute straight quotes (') for typographic reversed-9 marks
  • Expect a named HTML entity for U+201B
  • Put CSS escape \201B in HTML text nodes
  • Mix quote styles randomly within one document

Key Takeaways

1

Three ways to render U+201B in HTML and CSS

&#x201B; &#8219;
2

For CSS stylesheets, use \201B in the content property

3

Unicode U+201B — SINGLE HIGH-REVERSED-9 QUOTATION MARK

4

No named entity—pair with ‚ for European closing quotes

❓ Frequently Asked Questions

Use &#x201B; (hex), &#8219; (decimal), or \201B in CSS content. There is no named HTML entity. All three render ‛.
U+201B (SINGLE HIGH-REVERSED-9 QUOTATION MARK). General Punctuation (U+2000–U+206F). Hex 201B, decimal 8219.
No. ‛ (U+201B) is a reversed-9 high quote for European typography. ‘ (U+2018) is the LEFT SINGLE QUOTATION MARK with entity &lsquo;.
For European-style quotation marks, typography, multilingual content, professional writing, citations, and any context requiring proper reversed-9 opening quotes.
General Punctuation characters like U+201B use numeric hex or decimal codes in HTML. Named entities cover common characters only; this reversed-9 mark uses numeric references.

Explore More HTML Entities!

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