HTML Entity for Lower Right Drop Shadowed White Square (❏)

What You'll Learn
How to display the Lower Right Drop Shadowed White Square (❏) in HTML using various entity methods. This symbol is a white square with a drop shadow extending to the lower right and is useful for checkboxes, list markers, design elements, and UI.
This character is part of the Dingbats Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this symbol.
⚡ Quick Reference — Lower Right Drop Shadowed White Square Entity
U+274FDingbats block
❏Hexadecimal reference
❏Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+274F
Hex code ❏
HTML code ❏
Named entity (none)
CSS code \274F
Meaning Lower right drop-shadowed white square
Related U+274E, U+2750 (shadowed square variants)
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing the Lower Right Drop Shadowed White Square (❏) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\274F";
}
</style>
</head>
<body>
<p>Symbol (hex): ❏</p>
<p>Symbol (decimal): ❏</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Lower Right Drop Shadowed White Square (❏) is supported in modern browsers when the font includes Dingbats glyphs:
👀 Live Preview
See the Lower Right Drop Shadowed White Square (❏) in UI and design contexts:
🧠 How It Works
Hexadecimal Code
❏ uses the Unicode hexadecimal value 274F to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
❏ uses the decimal Unicode value 10063 to display the same character. This is one of the most commonly used methods.
CSS Entity
\274F 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+274F sits in Dingbats. Related symbols include U+274E (lower right shadowed) and U+2750 (upper right drop shadowed). There is no named HTML entity.
Use Cases
The Lower Right Drop Shadowed White Square (❏) is commonly used in:
Use as an unchecked or optional checkbox style, or as a list bullet in to-do lists and forms.
Add a drop-shadow square as a design element in layouts, cards, or typographic compositions.
Represent options, placeholders, or selectable items in forms and user interfaces.
Mark sections, notes, or blocks in documentation and technical writing.
Use as a frame or block accent in flyers, invitations, or decorative content.
Suggest a box or frame for images, cards, or media placeholders in layouts.
Represent process steps, decision blocks, or nodes in simple diagrams.
💡 Best Practices
Do
- Pair with semantic HTML (
<input type="checkbox">) oraria-labelwhen used as a control - Use numeric references (
❏or❏) consistently in HTML - Test contrast on light and dark backgrounds so the shadow remains visible
- Consider U+2750 or U+274E when a different shadow direction is needed
- Use
\274Fin CSScontentwhen inserting via pseudo-elements
Don’t
- Replace real form controls with ❏ alone—use native inputs for accessibility
- Put CSS escape
\274Fin HTML text nodes - Expect a named HTML entity—only numeric codes work for ❏
- Assume the shadow renders identically across all fonts and platforms
- Use the symbol without context when meaning is unclear (add “Optional” text)
Key Takeaways
Three references render ❏ (no named entity)
❏ ❏For CSS stylesheets, use the escape in the content property
\274FUnicode U+274F — LOWER RIGHT DROP-SHADOWED WHITE SQUARE
White square with drop shadow to the lower right (Dingbats block)
Previous: Lower Left Semicircular Anticlockwise Arrow (⤿) Next: Lower Right Pencil
❓ Frequently Asked Questions
❏ (hex), ❏ (decimal), or \274F in CSS content. All produce ❏. There is no named HTML entity.U+274F (LOWER RIGHT DROP-SHADOWED WHITE SQUARE). Dingbats block. Hex 274F, decimal 10063. It is a white square with a drop shadow extending to the lower right.❏ or ❏) is used in HTML content. The CSS entity (\274F) 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
