HTML Entity for Black Chess Bishop (♝)

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

What You'll Learn

How to display the Black Chess Bishop (♝) in HTML and CSS. This character is U+265D (BLACK CHESS BISHOP) in the Miscellaneous Symbols block (U+2600–U+26FF), alongside the other standard chess piece glyphs (U+2654–U+265F). Black starts with bishops on c8 and f8; the bishop moves along diagonals.

There is no named HTML entity for U+265D. Use ♝ or ♝ in markup, or \265D in stylesheet content. For accessible boards, combine glyphs with square labels, aria-label, or hidden text so assistive tech does not only hear “unknown symbol.”

⚡ Quick Reference — Black Chess Bishop

Unicode U+265D

Miscellaneous Symbols

Hex Code ♝

Hexadecimal reference

HTML Code ♝

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

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

🌐 Browser Support

U+265D 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 bishop glyphs (font-dependent):

Black bishop
White bishop
Back rank snippet ♜♝♞♛♚♞♝♜
Caption Black pieces use U+265A\u2013U+265F; white pieces use U+2654\u2013U+2659.
Monospace refs &#x265D; &#9821; \265D

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#9821; is the decimal equivalent (9821) for the same Black Chess Bishop character.

HTML markup
3

CSS Entity

\265D is the CSS escape for U+265D, 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+265D.

Use Cases

The Black Chess Bishop (♝) is commonly used for:

♟ Chess sites

FEN/PGN renderers and comment threads that show pieces without image sprites.

📝 Notation

Algebraic notes beside diagrams (still spell moves as Bb5 for clarity).

🎮 Apps & puzzles

Tactics trainers and lightweight boards in mobile web views.

🎓 Teaching

Lessons on diagonal sliders and fianchetto patterns.

💬 Forums

Inline piece icons in posts when images are disabled.

📄 Print CSS

Print-friendly game sheets generated from HTML.

♿ Accessibility

Expose square + piece in text or ARIA; ♝ alone is not enough for blind users.

💡 Best Practices

Do

  • Use one font stack for every piece so the board looks cohesive
  • Prefer numeric references in generated markup from engines and databases
  • Offer a text-only board mode (coordinates + piece letters) as an alternative
  • Use \265D only inside CSS content, not inside HTML text nodes
  • Test dark mode: some piece outlines need subtle stroke or background for contrast

Don’t

  • Confuse black bishop U+265D with white bishop U+2657 in data or CSS
  • Rely on tiny monochrome ♝ as the only way to read a full position
  • Assume every visitor knows figurine notation without a legend
  • Ship tournament pairings or clocks using only dingbats without accessible fallbacks
  • Forget RTL: mixed LTR coordinates with RTL UI can reorder inline pieces oddly

Key Takeaways

1

Two numeric references render the same glyph

&#x265D; &#9821;
2

CSS content escape

\265D
3

U+265D is black bishop; U+2657 is white bishop

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 &#x265D; (hex), &#9821; (decimal), or \265D in CSS content. There is no named entity; all valid methods render ♝.
U+265D (hex 265D, decimal 9821). Miscellaneous Symbols. Unicode name BLACK CHESS BISHOP.
When you render chess content as UTF-8 text pieces instead of bitmap or vector assets, and you have confirmed font coverage for all pieces on the board.
Numeric references belong in HTML. The \265D escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x265D;, &#9821;, or \265D 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