HTML Entity for Upper Right Shadowed White Square (❒)

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

What You'll Learn

How to display the Upper Right Shadowed White Square (❒) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2752 (UPPER RIGHT SHADOWED WHITE SQUARE) in the Dingbats block (U+2700–U+27BF)—a white square with a shadow or heavy outline in the upper right corner, used for decorative elements, UI design, visual indicators, and design accents.

Render it with ❒, ❒, or CSS escape \2752. There is no named HTML entity. Compare ❐ (Upper Right Drop Shadowed White Square, U+2750, drop-shadow style) and ❑ (Lower Right Shadowed White Square, U+2751, lower-right variant).

⚡ Quick Reference — Upper Right Shadowed White Square

Unicode U+2752

Dingbats block

Hex Code ❒

Hexadecimal reference

HTML Code ❒

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2752
Hex code       ❒
HTML code      ❒
Named entity   (none)
CSS code       \2752
Official name  UPPER RIGHT SHADOWED WHITE SQUARE
Related        U+2750 = Upper right drop shadowed; U+2751 = Lower right shadowed
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Upper Right Shadowed White Square (❒) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2752";
  }
 </style>
</head>
<body>
<p>Shadowed square (hex): &#x2752;</p>
<p>Shadowed square (decimal): &#10066;</p>
<p id="point">Shadowed square (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Upper Right Shadowed White Square (❒) is supported in modern browsers when the font includes Dingbats glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Upper Right Shadowed White Square (❒) in UI and design contexts:

Large glyph
Design accentNote ❒ featured item
vs drop shadowed❒ shadowed   ❐ drop shadow
DecorativeSection ❒ highlight
Numeric refs&#x2752; &#10066; \2752

🧠 How It Works

1

Hexadecimal Code

&#x2752; uses the Unicode hexadecimal value 2752 to display the Upper Right Shadowed White Square. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10066; uses the decimal Unicode value 10066 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\2752 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2752 sits in Dingbats (U+2700–U+27BF). Related: U+2750 (drop shadowed), U+2751 (lower right shadowed). There is no named HTML entity.

Use Cases

The Upper Right Shadowed White Square (❒) is commonly used in:

✨ Decorative elements

Ornamental designs, visual embellishments, and decorative typography.

💻 UI design

Interface elements, visual indicators, and design accents in web layouts.

🎨 Graphic design

Creative projects, logos, and visual content using shadowed square symbols.

📜 Visual indicators

Markers and design elements that need a shadowed square for communication.

📖 Special typography

Decorative text, styled content, and typographic accents.

🌐 Web design

Website elements and online content requiring shadowed square symbols.

💡 Best Practices

Do

  • Use numeric references (&#x2752; or &#10066;) consistently in HTML
  • Mark purely decorative uses with aria-hidden="true" or provide alt text when meaningful
  • Pick the correct shadowed square variant (upper vs lower, shadowed vs drop-shadowed)
  • Verify Dingbats glyph support in your target fonts and devices
  • Use \2752 in CSS content when inserting via pseudo-elements

Don’t

  • Confuse ❒ (U+2752, upper right shadowed) with ❐ (drop shadowed) or ❑ (lower right shadowed)
  • Put CSS escape \2752 in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ❒
  • Use the symbol as the sole indicator for critical UI state without text labels
  • Assume decorative fonts include all Dingbats characters

Key Takeaways

1

Three references render ❒ (no named entity)

&#x2752; &#10066;
2

For CSS stylesheets, use the escape in the content property

\2752
3

Unicode U+2752 — UPPER RIGHT SHADOWED WHITE SQUARE

4

Dingbats block (U+2700–U+27BF)

❓ Frequently Asked Questions

Use &#x2752; (hex), &#10066; (decimal), or \2752 in CSS content. All produce ❒. There is no named HTML entity.
U+2752 (UPPER RIGHT SHADOWED WHITE SQUARE). Dingbats block (U+2700–U+27BF). Hex 2752, decimal 10066. A white square with a shadow or heavy outline in the upper right corner.
For decorative elements, UI design, visual indicators, design accents, special typography, and any content that needs a shadowed square symbol for visual enhancement.
HTML code (&#10066; or &#x2752;) is used in HTML content. The CSS entity (\2752) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ❒ but in different contexts.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Dingbats like ❒ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

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