HTML Entity for Black Chess Queen (♛)

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

What You'll Learn

How to display the Black Chess Queen (♛) in HTML and CSS. This character is U+265B (BLACK CHESS QUEEN) in the Miscellaneous Symbols block (U+2600–U+26FF), with the other standard chess piece glyphs (U+2654–U+265F). The queen is the most powerful piece: it moves any number of squares along a rank, file, or diagonal. Black’s queen starts on d8.

There is no named HTML entity for U+265B. Use ♛ or ♛ in markup, or \265B in stylesheet content. In algebraic notation, queen moves are written with Q (for example Qxd5, Qa5). For accessible boards, combine glyphs with square labels, aria-label, or hidden text so assistive technology does not only announce an unlabeled symbol.

⚡ Quick Reference — Black Chess Queen

Unicode U+265B

Miscellaneous Symbols

Hex Code ♛

Hexadecimal reference

HTML Code ♛

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+265B
Hex code       ♛
HTML code      ♛
Named entity   —
CSS code       \265B
1

Complete HTML Example

This example shows U+265B using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\265B";
  }
 </style>
</head>
<body>
<p>Black Chess Queen using Hexa Decimal: &#x265B;</p>
<p>Black Chess Queen using HTML Code: &#9819;</p>
<p id="point">Black Chess Queen using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+265B is widely supported; piece artwork varies by typeface:

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

👀 Live Preview

Compare black and white queen glyphs (font-dependent):

Black queen
White queen
Notation hint Qxd5 · Qa5 · Qh4+
Caption Black queen is U+265B; white queen is U+2655.
Monospace refs &#x265B; &#9819; \265B

🧠 How It Works

1

Hexadecimal Code

&#x265B; references code point U+265B using hex digits 265B after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9819; is the decimal equivalent (9819) for the same Black Chess Queen character.

HTML markup
3

CSS Entity

\265B is the CSS escape for U+265B, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+265B.

Use Cases

The Black Chess Queen (♛) is commonly used for:

♛ Chess sites

Boards, move lists, and queen-activity callouts without image sprites.

📝 PGN & notation

Figurine boards beside algebraic lines (Qxd5, Qa5).

🎮 Apps & puzzles

Queen forks, skewers, and mating-net trainers with text pieces.

🎓 Teaching

Queen power, centralization, and endgame lessons with inline glyphs.

💬 Forums

Analysis threads when images are off or slow to load.

📄 Print CSS

Printable worksheets and club materials from HTML.

♿ Accessibility

Announce square + piece (e.g. “black queen on d8”); ♛ alone is not enough.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+265B
  • Pair figurine ♛ with algebraic Q moves in PGN-style UI
  • Use one font stack for every piece so the board looks cohesive
  • Use \265B only inside CSS content, not inside HTML text nodes
  • Add aria-label or title (e.g. “Black Queen”) for screen readers

Don’t

  • Confuse black queen U+265B with white queen U+2655 in data or CSS
  • Show only ♛ without square context on interactive boards
  • Assume every visitor reads figurine notation without a legend
  • Ship tournament UI using only dingbats without accessible fallbacks
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x265B; &#9819;
2

CSS content escape

\265B
3

U+265B is black queen; U+2655 is white queen

4

Chess pieces U+2654–U+265F share one Unicode subrange in Miscellaneous Symbols

5

Pair glyphs with text, coordinates, or ARIA for inclusive chess UX

❓ Frequently Asked Questions

Use &#x265B; (hex), &#9819; (decimal), or \265B in CSS content. There is no named entity; all valid methods render ♛.
U+265B (hex 265B, decimal 9819). Miscellaneous Symbols. Unicode name BLACK CHESS QUEEN.
On chess websites, in PGN or figurine notation, game design, educational content, chess apps, puzzle interfaces, and forums that display positions or pieces as text instead of images.
Numeric references belong in HTML. The \265B escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x265B;, &#9819;, or \265B in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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