HTML Entity for Rotated Capital Q (℺)

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

What You'll Learn

How to display the Rotated Capital Q symbol (℺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+213A (ROTATED CAPITAL Q) in the Letterlike Symbols block (U+2100–U+214F)—a letterlike glyph representing a rotated capital Q, used in decorative typography and creative design.

Use ℺, ℺, or CSS \213A. There is no named HTML entity. Do not confuse ℺ with U+0051 (Q, regular Latin Q) or U+211A (ℚ, double-struck capital Q / ℚ).

⚡ Quick Reference — Rotated Capital Q

Unicode U+213A

Letterlike Symbols

Hex Code ℺

Hexadecimal reference

HTML Code ℺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+213A
Hex code       ℺
HTML code      ℺
Named entity   (none)
CSS code       \213A
Related        U+0051 = Latin capital Q (Q)
               U+211A = double-struck Q (ℚ / ℚ)
1

Complete HTML Example

A simple example showing the Rotated Capital Q symbol (℺) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\213A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x213A;</p>
<p>Symbol (decimal): &#8506;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Rotated Capital Q symbol (℺) is supported in all modern browsers when the font includes Letterlike Symbols glyphs:

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

👀 Live Preview

See the Rotated Capital Q symbol (℺) rendered live in different contexts:

Decorative text Creative logo mark: ℺uick Design Studio
Large glyph
Letter comparison Q ℺ ℚ
Monospace rotated Q = ℺
Numeric refs &#x213A; &#8506; \213A
Branding accent Use ℺ sparingly as a distinctive letterform in headings.

🧠 How It Works

1

Hexadecimal Code

&#x213A; uses the Unicode hexadecimal value 213A. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\213A is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+213A is in Letterlike Symbols. There is no named HTML entity. Previous: Rising Diagonal Crossing South East Arrow (U+2930).

Use Cases

The Rotated Capital Q symbol (℺) is commonly used in:

🎨 Decorative Typography

Add creative letterforms in headings and display text.

✨ Text Effects

Use in unique typographic treatments and stylized copy.

🖼 Creative Designs

Include in logos, posters, and graphic design projects.

📝 Special Letterforms

Display rotated or decorative alphabetic characters.

🏫 Branding Projects

Use as a distinctive mark in identity and logo work.

📚 Typography Education

Reference in materials about letterforms and Unicode symbols.

💡 Best Practices

Do

  • Use &#x213A; or &#8506; for explicit numeric references
  • Distinguish ℺ from regular Q and double-struck ℚ
  • Add aria-hidden="true" when used purely as decoration
  • Verify your font supports Letterlike Symbols glyphs
  • Use CSS font-size to scale for headings and logos

Don’t

  • Assume a named HTML entity exists—there is none for U+213A
  • Use CSS escape \213A inside HTML text nodes
  • Substitute ℺ for plain Q in body copy where readability matters
  • Overuse the symbol—it works best as an accent
  • Use HTML entities in JS (use \u213A instead)

Key Takeaways

1

Three methods render ℺ — no named entity

&#x213A; &#8506;
2

For CSS, use \213A in the content property

3

Unicode U+213A — ROTATED CAPITAL Q in Letterlike Symbols

4

Not the same as Q (U+0051) or ℚ (double-struck Q / &Qopf;)

❓ Frequently Asked Questions

Use &#x213A; (hex), &#8506; (decimal), or \213A in CSS content. There is no named HTML entity. All three render ℺.
U+213A (ROTATED CAPITAL Q). Letterlike Symbols block (U+2100–U+214F). Hex 213A, decimal 8506.
In decorative typography, unique text effects, creative designs, special letterforms, branding, and artistic content needing a rotated Q glyph.
HTML references (&#8506; or &#x213A;) go in markup. The CSS escape \213A is used in stylesheets, typically on ::after or ::before.
Named HTML entities cover a subset of common characters. Letterlike Symbols like U+213A use numeric hex or decimal codes or CSS escapes, which is standard for specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — letterlike symbols, letters, 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