HTML Entity for Outlined Latin Cross (✟)

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

What You'll Learn

How to display the Outlined Latin Cross (✟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271F (OUTLINED LATIN CROSS) in the Dingbats block (U+2700–U+27BF)—a Latin cross with a longer lower arm and an outlined style, widely used in Christian, religious, historical, and decorative web design.

Render it with ✟, ✟, or CSS escape \271F. There is no named HTML entity. Do not confuse ✟ with U+271D (✝, solid Latin cross), U+2719 (✙, outlined Greek cross), or U+271A (✚, heavy Greek cross).

⚡ Quick Reference — Outlined Latin Cross

Unicode U+271F

Dingbats block

Hex Code ✟

Hexadecimal reference

HTML Code ✟

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+271F
Hex code       ✟
HTML code      ✟
Named entity   (none)
CSS code       \271F
Meaning        Outlined Latin cross (longer lower arm)
Related        U+271D = Latin cross (✝)
               U+2719 = outlined Greek cross (✙)
               U+271A = heavy Greek cross (✚)
               U+2626 = orthodox cross (☦)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ✟ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\271F";
  }
 </style>
</head>
<body>
<p>Outlined Latin cross (hex): &#x271F;</p>
<p>Outlined Latin cross (decimal): &#10015;</p>
<p id="point">Outlined Latin cross (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Outlined Latin Cross (✟) is widely supported in all modern browsers:

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

👀 Live Preview

See the Outlined Latin Cross (✟) in religious and decorative contexts:

Single symbol
Church section ✟ Service times
Memorial line In loving memory ✟
Not the same as Latin ✝  |  Greek ✙  |  Heavy ✚
Numeric refs &#x271F; &#10015; \271F

🧠 How It Works

1

Hexadecimal Code

&#x271F; uses the Unicode hexadecimal value 271F to display the outlined Latin cross.

HTML markup
2

Decimal HTML Code

&#10015; uses the decimal Unicode value 10015 for the same character.

HTML markup
3

CSS Entity

\271F is used in CSS stylesheets in the content property of pseudo-elements for decorative or heading markers.

CSS stylesheet
=

Outlined cross result

All three methods render . Unicode U+271F in the Dingbats block. Next: Outlined White Star (⚝).

Use Cases

The Outlined Latin Cross (✟) is commonly used in:

⛪ Christian content

Church websites, faith articles, and liturgical resources.

📚 Historical design

Medieval, heraldic, and commemorative web pages.

🙏 Memorial layouts

Obituaries, remembrance sections, and tribute pages.

🎨 Decorative design

Typography accents, section dividers, and symbolic markers.

📄 Custom bullets

Distinct list markers where a lighter Latin cross fits the theme.

📋 Unicode references

Character pickers, entity documentation, and Dingbats cross guides.

♿ Accessibility

Pair ✟ with visible text; use respectful alt text in religious contexts.

💡 Best Practices

Do

  • Use &#x271F; or &#10015; for inline Latin cross symbols
  • Provide surrounding text context for religious and memorial use
  • Set <meta charset="utf-8"> for reliable rendering
  • Choose the correct cross variant—Latin vs Greek vs Orthodox
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ✟ with solid Latin ✝, outlined Greek ✙, or heavy ✚
  • Use padded Unicode notation like U+0271F—the correct value is U+271F
  • Use CSS escape \271F in HTML text nodes
  • Use religious symbols decoratively without cultural sensitivity
  • Assume every font renders Dingbats crosses identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+271F

&#x271F; &#10015;
2

For CSS stylesheets, use \271F in the content property

3

Unicode U+271F — OUTLINED LATIN CROSS (longer lower arm)

4

Distinct from solid Latin ✝, outlined Greek ✙, and heavy Greek ✚

❓ Frequently Asked Questions

Use &#x271F; (hex), &#10015; (decimal), or \271F in CSS content. There is no named entity. All three render ✟.
U+271F (OUTLINED LATIN CROSS). Dingbats block (U+2700–U+27BF). Hex 271F, decimal 10015.
No. ✟ (U+271F) is an outlined Dingbats variant with a longer lower arm. ✝ (U+271D) is the solid LATIN CROSS. ✙ (U+2719) is OUTLINED GREEK CROSS with equal arms.
For Christian and religious content, church websites, memorial pages, historical design, heraldic motifs, and decorative section markers needing a lighter Latin cross.
Named HTML entities cover a subset of common characters. U+271F uses numeric hex or decimal codes or CSS escapes, which is standard for Dingbats cross symbols.

Explore More HTML Entities!

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