HTML Entity for Outlined Greek Cross (✙)

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

What You'll Learn

How to display the Outlined Greek Cross (✙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2719 (OUTLINED GREEK CROSS) in the Dingbats block (U+2700–U+27BF)—an equal-armed cross with an outlined style, used in religious, historical, heraldic, and decorative contexts.

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

⚡ Quick Reference — Outlined Greek Cross

Unicode U+2719

Dingbats block

Hex Code ✙

Hexadecimal reference

HTML Code ✙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2719
Hex code       ✙
HTML code      ✙
Named entity   (none)
CSS code       \2719
Meaning        Outlined Greek cross (equal arms)
Related        U+271A = heavy Greek cross (✚)
               U+271F = outlined Latin cross (✟)
               U+271D = Latin cross (✝)
               U+271B = open centre 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: "\2719";
  }
 </style>
</head>
<body>
<p>Outlined Greek cross (hex): &#x2719;</p>
<p>Outlined Greek cross (decimal): &#10009;</p>
<p id="point">Outlined Greek cross (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Outlined Greek Cross (✙) is widely supported in all modern browsers:

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

👀 Live Preview

See the Outlined Greek Cross (✙) in religious and decorative contexts:

Single symbol
Section marker ✙ Historical overview
Memorial line In memory ✙ 1920–2020
Not the same as Heavy ✚  |  Latin ✝  |  Outlined ✟
Numeric refs &#x2719; &#10009; \2719

🧠 How It Works

1

Hexadecimal Code

&#x2719; uses the Unicode hexadecimal value 2719 to display the outlined Greek cross.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2719 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+2719 in the Dingbats block. Next: Outlined Latin Cross (✟).

Use Cases

The Outlined Greek Cross (✙) is commonly used in:

⛪ Religious content

Church pages, liturgical resources, and faith-based articles.

📚 Historical pages

Byzantine, medieval, and heraldic history with cross symbolism.

🙏 Memorial layouts

Obituaries, remembrance sections, and commemorative web design.

🎨 Decorative design

Heraldic motifs, typography accents, and symbolic section markers.

📄 Custom bullets

Distinct list markers where a lighter Greek 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 &#x2719; or &#10009; for inline Greek cross symbols
  • Provide surrounding text context for religious and memorial use
  • Set <meta charset="utf-8"> for reliable rendering
  • Choose the correct cross for the tradition—Greek vs Latin vs Orthodox
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ✙ with heavy Greek ✚, Latin ✝, or outlined Latin ✟
  • Use padded Unicode notation like U+02719—the correct value is U+2719
  • Use CSS escape \2719 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+2719

&#x2719; &#10009;
2

For CSS stylesheets, use \2719 in the content property

3

Unicode U+2719 — OUTLINED GREEK CROSS (equal arms)

4

Distinct from heavy ✚, Latin ✝, and outlined Latin ✟

❓ Frequently Asked Questions

Use &#x2719; (hex), &#10009; (decimal), or \2719 in CSS content. There is no named entity. All three render ✙.
U+2719 (OUTLINED GREEK CROSS). Dingbats block (U+2700–U+27BF). Hex 2719, decimal 10009.
No. ✙ (U+2719) is an equal-armed outlined Greek cross in Dingbats. ✝ (U+271D) is LATIN CROSS with a longer lower arm. ✟ (U+271F) is OUTLINED LATIN CROSS.
For religious and historical content, church or memorial pages, heraldic design, decorative section markers, and any context needing a lighter equal-armed Greek cross.
Named HTML entities cover a subset of common characters. U+2719 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