HTML Entity for Black Chess Knight (♞)

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

What You'll Learn

How to display the Black Chess Knight (♞) in HTML and CSS. This character is U+265E (BLACK CHESS KNIGHT) in the Miscellaneous Symbols block (U+2600–U+26FF), with the other standard chess piece glyphs (U+2654–U+265F). Black starts with knights on b8 and g8; the knight moves in an L-shape (two squares orthogonally plus one perpendicular) and is the only piece that may jump over occupied squares.

There is no named HTML entity for U+265E. Use ♞ or ♞ in markup, or \265E in stylesheet content. 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 Knight

Unicode U+265E

Miscellaneous Symbols

Hex Code ♞

Hexadecimal reference

HTML Code ♞

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

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

🌐 Browser Support

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

Black knight
White knight
Knights on starting rank ♜♞♝♛♚♝♞♜
Caption Black knight is U+265E; white knight is U+2658.
Monospace refs &#x265E; &#9822; \265E

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#9822; is the decimal equivalent (9822) for the same Black Chess Knight character.

HTML markup
3

CSS Entity

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

Use Cases

The Black Chess Knight (♞) is commonly used for:

♟ Chess sites

Boards, PGN comments, and opening theory lines without image sprites.

⚡ Tactics & forks

Puzzle thumbnails and fork diagrams where the knight glyph reads instantly.

🎮 Apps & puzzles

Knight tours, underpromotion drills, and mobile-friendly figurine boards.

🎓 Teaching

Lessons on outposts, L-shaped movement, and jumping over blockades.

💬 Forums

Inline knight markers in analysis when images are disabled.

📄 Print CSS

Printable worksheets and club ladder sheets from HTML.

♿ Accessibility

Announce square + piece (e.g. “black knight on f6”); ♞ alone is not enough.

💡 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 \265E only inside CSS content, not inside HTML text nodes
  • When teaching forks, pair the glyph with algebraic destination squares in text

Don’t

  • Confuse black knight U+265E with white knight U+2658 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 UI 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

&#x265E; &#9822;
2

CSS content escape

\265E
3

U+265E is black knight; U+2658 is white knight

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 &#x265E; (hex), &#9822; (decimal), or \265E in CSS content. There is no named entity; all valid methods render ♞.
U+265E (hex 265E, decimal 9822). Miscellaneous Symbols. Unicode name BLACK CHESS KNIGHT.
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 \265E escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x265E;, &#9822;, or \265E 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