HTML Entity for Upper Right Drop Shadowed White Square (❐)

What You'll Learn
How to display the Upper Right Drop Shadowed White Square (❐) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2750 (UPPER RIGHT DROP-SHADOWED WHITE SQUARE) in the Dingbats block (U+2700–U+27BF)—a white square with a drop shadow in the upper right corner, used for decorative elements, UI design, visual indicators, and design accents.
Render it with ❐, ❐, or CSS escape \2750. There is no named HTML entity. Compare ❏ (Lower Right Drop Shadowed White Square, U+274F) and ❑ (Lower Right Shadowed White Square, U+2751) for related shadowed square variants.
⚡ Quick Reference — Upper Right Drop Shadowed White Square
U+2750Dingbats block
❐Hexadecimal reference
❐Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2750
Hex code ❐
HTML code ❐
Named entity (none)
CSS code \2750
Official name UPPER RIGHT DROP-SHADOWED WHITE SQUARE
Related U+274F = Lower right drop shadowed; U+2751 = Lower right shadowed
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing the Upper Right Drop Shadowed White Square (❐) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2750";
}
</style>
</head>
<body>
<p>Drop shadowed square (hex): ❐</p>
<p>Drop shadowed square (decimal): ❐</p>
<p id="point">Drop shadowed square (CSS): </p>
</body>
</html>🌐 Browser Support
The Upper Right Drop Shadowed White Square (❐) is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See the Upper Right Drop Shadowed White Square (❐) in UI and design contexts:
🧠 How It Works
Hexadecimal Code
❐ uses the Unicode hexadecimal value 2750 to display the Upper Right Drop Shadowed White Square. The x prefix indicates hexadecimal format.
Decimal HTML Code
❐ uses the decimal Unicode value 10064 to display the same character. This is one of the most commonly used methods.
CSS Entity
\2750 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ❐. Unicode U+2750 sits in Dingbats (U+2700–U+27BF). Related: U+274F (lower right drop shadowed), U+2751 (lower right shadowed). There is no named HTML entity.
Use Cases
The Upper Right Drop Shadowed White Square (❐) is commonly used in:
Ornamental designs, visual embellishments, and decorative typography.
Interface elements, visual indicators, and design accents in web layouts.
Creative projects, logos, and visual content using shadowed square symbols.
Markers and design elements that need a drop-shadowed square for communication.
Decorative text, styled content, and typographic accents.
Website elements and online content requiring shadowed square symbols.
💡 Best Practices
Do
- Use numeric references (
❐or❐) 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, drop vs heavy shadow)
- Verify Dingbats glyph support in your target fonts and devices
- Use
\2750in CSScontentwhen inserting via pseudo-elements
Don’t
- Confuse ❐ (U+2750, upper right drop shadowed) with ❏ (lower right drop shadowed) or ❑ (lower right shadowed)
- Put CSS escape
\2750in 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
Three references render ❐ (no named entity)
❐ ❐For CSS stylesheets, use the escape in the content property
\2750Unicode U+2750 — UPPER RIGHT DROP-SHADOWED WHITE SQUARE
Dingbats block (U+2700–U+27BF)
Previous: Upper Blade Scissors (✁) Next: Upper Right Pencil
❓ Frequently Asked Questions
❐ (hex), ❐ (decimal), or \2750 in CSS content. All produce ❐. There is no named HTML entity.U+2750 (UPPER RIGHT DROP-SHADOWED WHITE SQUARE). Dingbats block (U+2700–U+27BF). Hex 2750, decimal 10064. A white square with a drop shadow in the upper right corner.❐ or ❐) is used in HTML content. The CSS entity (\2750) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ❐ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, symbols, and more.
8 people found this page helpful
