HTML Entity for Latin Cross (✝)

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

What You'll Learn

How to display the Latin Cross symbol (✝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271D (LATIN CROSS) in the Dingbats block (U+2700–U+27BF)—the standard form of the Christian cross with a longer vertical arm, used in religious content, church websites, memorials, and heraldic design.

Render it with ✝, ✝, or CSS escape \271D. There is no named HTML entity. Do not confuse ✝ with U+271E (✞, shadowed white Latin cross) or U+2626 (☦, Orthodox cross).

⚡ Quick Reference — Latin Cross

Unicode U+271D

Dingbats block

Hex Code ✝

Hexadecimal reference

HTML Code ✝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+271D
Hex code       ✝
HTML code      ✝
Named entity   (none)
CSS code       \271D
Meaning        Latin / Christian cross
Related        U+271E = shadowed white (✞)
               U+2626 = Orthodox cross (☦)
1

Complete HTML Example

A simple example showing the Latin Cross (✝) with hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\271D";
  }
 </style>
</head>
<body>
<p>Latin Cross using Hexadecimal: &#x271D;</p>
<p>Latin Cross using HTML Code: &#10013;</p>
<p id="point">Latin Cross using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Latin Cross symbol (✝) is widely supported in modern browsers when the font includes Dingbats characters:

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

👀 Live Preview

See the Latin Cross (✝) in religious and symbolic contexts:

Church header ✝ St. Mary’s Parish
Memorial In loving memory ✝
Cross comparison ✝ ✞ ☦
Large glyph
Numeric refs &#x271D; &#10013; \271D

🧠 How It Works

1

Hexadecimal Code

&#x271D; uses the Unicode hexadecimal value 271D to display the Latin Cross symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10013; uses the decimal Unicode value 10013 to display the same character.

HTML markup
3

CSS Entity

\271D 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 (✝). Unicode U+271D is in the Dingbats block. Next: Lb Bar Symbol (℔).

Use Cases

The Latin Cross symbol (✝) is commonly used in:

⛪ Church sites

Church homepages, parish sites, and faith-based organization pages.

🕯️ Memorials

Obituaries, memorial sites, and tribute content for faith or remembrance.

📜 History

Family history, heraldry, and historical documentation with Christian symbolism.

🎓 Education

Teaching religious symbolism, art history, and cultural significance of the cross.

🏛️ Heraldry

Coats of arms, logos, and official insignia that use the Latin cross.

📧 Events

Weddings, baptisms, and religious event invitations or announcements.

💡 Best Practices

Do

  • Add aria-label="Latin cross" or visible text for accessibility
  • Use fonts that support Dingbats (U+271D)
  • Set <meta charset="utf-8">
  • Use the symbol in appropriate religious or cultural context
  • Keep one numeric style (hex or decimal) per project
  • Ensure sufficient size and contrast for readability

Don’t

  • Confuse ✝ (U+271D) with ✞ (U+271E) or ☦ (U+2626;)
  • Expect a named HTML entity for U+271D
  • Use CSS \271D inside HTML text nodes
  • Rely on the symbol alone without accessible text for screen readers
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ✝

&#x271D; &#10013;
2

For CSS, use \271D in the content property

3

Unicode U+271D — LATIN CROSS (✝)

4

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

❓ Frequently Asked Questions

Use &#x271D; (hex), &#10013; (decimal), or \271D in CSS content. There is no named entity. All three methods render the Latin Cross (✝) correctly.
U+271D (LATIN CROSS). Dingbats block (U+2700–U+27BF). Hex 271D, decimal 10013. The standard form of the Christian cross with a longer vertical arm.
In religious and church websites, memorial and tribute pages, historical and genealogical content, heraldry and emblem design, educational content about symbolism, and logos or branding for faith-based organizations.
HTML references (&#10013; or &#x271D;) go in markup. The CSS escape \271D is used in stylesheets, typically on ::before or ::after. Both produce ✝ (✝).
Named entities cover common characters; Dingbats symbols like U+271D use numeric hex (&#x271D;) or decimal (&#10013;) codes. That is standard for symbolic and decorative characters in HTML.

Explore More HTML Entities!

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