HTML Entity for Black Diamond Minus White X (❖)

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

What You'll Learn

How to display Black Diamond Minus White X (❖) in HTML and CSS. This character is U+2756 in the Dingbats block (U+2700–U+27BF), a decorative ornamental glyph used in typesetting. It shows a black diamond with a white X cutout, commonly used for box frames, section dividers, and ornamental accents.

There is no named HTML entity for U+2756. Use ❖ or ❖ in markup, or \2756 in stylesheet content. The symbol suits graphic design, typography, decorative bullets, and section markers. Pair ornamental glyphs with visible text or aria-label when the symbol conveys meaning.

⚡ Quick Reference — Black Diamond Minus White X

Unicode U+2756

Dingbats (U+2700–U+27BF)

Hex Code ❖

Hexadecimal reference

HTML Code ❖

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2756
Hex code       ❖
HTML code      ❖
Named entity   —
CSS code       \2756
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2756";
  }
 </style>
</head>
<body>
<p>Black Diamond Minus White X using Hexa Decimal: &#x2756;</p>
<p>Black Diamond Minus White X using HTML Code: &#10070;</p>
<p id="point">Black Diamond Minus White X using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2756 is widely supported in modern browsers; dingbat artwork varies by typeface:

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

👀 Live Preview

See the glyph at different sizes and beside related Dingbats (font-dependent):

Large glyph
Section divider ❖ Chapter One · ❖ Chapter Two
Related Dingbats ❓ ❔ ❕ ❖ ❗
Caption U+2756 is BLACK DIAMOND MINUS WHITE X in the Dingbats block (U+2700–U+27BF).
Monospace refs &#x2756; &#10070; \2756

🧠 How It Works

1

Hexadecimal Code

&#x2756; references code point U+2756 using hex digits 2756 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10070; is the decimal equivalent (10070) for the same Black Diamond Minus White X character.

HTML markup
3

CSS Entity

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

Use Cases

The Black Diamond Minus White X (❖) is commonly used for:

🎨 Graphic design

Decorative elements, logos, and ornamental accents in layouts.

📝 Typography

Section dividers, pull quotes, and decorative typography in print and web.

📦 Box frames

Borders, corners, and frame elements for callout boxes and highlights.

📋 Bullet points

Alternative list markers and emphasis indicators in content.

🌐 Web layouts

Section markers, icons, and decorative accents in web design.

📄 Documents

Headers, footers, and ornamental elements in documents and PDFs.

♿ Accessibility

Pair ❖ with text or ARIA (e.g. “Section divider”) when it conveys meaning.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+2756
  • Pair ❖ with clear text when it marks a divider or section
  • Scale with font-size so the dingbat fits your layout
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \2756 only inside CSS content, not inside HTML text nodes
  • Add aria-label or title (e.g. “Section divider”) for screen readers

Don’t

  • Confuse U+2756 with card-suit diamonds (e.g. U+2666) or other diamond glyphs
  • Rely on ❖ alone to communicate meaning in critical UI
  • Assume every font renders Dingbats crisply at small sizes
  • Use decorative glyphs as the only cue for navigation or state
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x2756; &#10070;
2

CSS content escape

\2756
3

U+2756 is a Dingbat—black diamond with white X cutout

4

Dingbats block spans U+2700–U+27BF; no named HTML entity

5

Pair glyphs with text or ARIA when the symbol conveys meaning

❓ Frequently Asked Questions

Use &#x2756; (hex), &#10070; (decimal), or \2756 in CSS content. There is no named entity; all valid methods render ❖.
U+2756 (hex 2756, decimal 10070). Dingbats block (U+2700–U+27BF). Unicode name BLACK DIAMOND MINUS WHITE X.
In graphic design, typography, box frames, section dividers, bullet points, and any web or print layout needing ornamental glyphs.
Numeric references belong in HTML. The \2756 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2756;, &#10070;, or \2756 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