HTML Entity for Shadowed White Latin Cross (✞)

What You'll Learn
How to display the Shadowed White Latin Cross (✞) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271E (SHADOWED WHITE LATIN CROSS) in the Dingbats block (U+2700–U+27BF)—a decorative Latin cross with a shadow effect, used in religious content, memorial pages, and symbolic design.
Render it with ✞, ✞, or CSS \271E. There is no named HTML entity. Do not confuse ✞ with Latin Cross U+271D (✝) or Orthodox Cross U+2626 (☦).
⚡ Quick Reference — Shadowed White Latin Cross
U+271EDingbats (U+2700–U+27BF)
✞Hexadecimal reference
✞Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+271E
Hex code ✞
HTML code ✞
Named entity (none)
CSS code \271E
Official name Shadowed white Latin cross
Related U+271D = Latin cross (✝)
U+2626 = Orthodox cross (☦)
Block Dingbats (U+2700–U+27BF)Complete HTML Example
A simple example showing ✞ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\271E";
}
</style>
</head>
<body>
<p>Shadowed Latin cross (hex): ✞</p>
<p>Shadowed Latin cross (decimal): ✞</p>
<p id="point">Shadowed Latin cross (CSS): </p>
</body>
</html>🌐 Browser Support
The Shadowed White Latin Cross (✞) is supported in modern browsers when fonts include Dingbats glyphs:
👀 Live Preview
See the Shadowed White Latin Cross in religious and memorial contexts:
content: "\271E" on ::before🧠 How It Works
Hexadecimal Code
✞ uses Unicode hexadecimal 271E to display the shadowed Latin cross.
Decimal HTML Code
✞ uses decimal Unicode value 10014 for the same character.
CSS Entity
\271E is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.
Symbolic result
All three methods produce ✞. Unicode U+271E in Dingbats. No named entity. Next: Shadowed White Star.
Use Cases
The Shadowed White Latin Cross (✞) commonly appears in:
Church websites, faith-based pages, and Christian community sites.
Obituaries, tribute pages, and remembrance content.
Ornamental layouts, headers, and symbolic embellishments.
Unicode and HTML entity reference documentation.
Custom bullets or dividers via ::before content.
Historical, heraldic, and educational symbolism pages.
💡 Best Practices
Do
- Use
✞or✞in HTML markup - Distinguish ✞ from plain Latin cross ✝
- Add meaningful text for accessibility on memorial pages
- Use the symbol respectfully in religious contexts
- Test rendering across browsers and fonts
Don’t
- Use padded Unicode notation like U+0271E—the correct value is
U+271E - Confuse ✞ with ✝ (Latin cross) or ☦ (Orthodox cross)
- Expect a named HTML entity for U+271E
- Put CSS escape
\271Ein HTML text nodes - Rely on the symbol alone without context for screen readers
Key Takeaways
Three ways to render U+271E in HTML and CSS
✞ ✞For CSS stylesheets, use \271E in the content property
Unicode U+271E — SHADOWED WHITE LATIN CROSS
Not the same as Latin cross ✝ (U+271D)
Previous: Shadowed White Circle (❍) Next: Shadowed White Star
❓ Frequently Asked Questions
✞ (hex), ✞ (decimal), or \271E in CSS content. There is no named HTML entity. All three render ✞.U+271E (SHADOWED WHITE LATIN CROSS). Dingbats (U+2700–U+27BF). Hex 271E, decimal 10014.Explore More HTML Entities!
Discover 1500+ HTML character references — Dingbats, symbols, and more.
8 people found this page helpful
