HTML Entity for East Syriac Cross (♱)

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

What You'll Learn

How to display the East Syriac Cross (♱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2671 (EAST SYRIAC CROSS) in the Miscellaneous Symbols block (U+2600–U+26FF)—a religious symbol used in Syriac Christianity, liturgical materials, and historical documents.

Render it with ♱, ♱, or CSS escape \2671. There is no named HTML entity for this symbol. Compare ✝ (Latin cross, U+271D) or other religious symbols when you need a different cross style.

⚡ Quick Reference — East Syriac Cross

Unicode U+2671

Miscellaneous Symbols block

Hex Code ♱

Hexadecimal reference

HTML Code ♱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2671
Hex code       ♱
HTML code      ♱
Named entity   (none)
CSS code       \2671
Related        U+271D = Latin cross (✝); U+2626 = Orthodox cross
1

Complete HTML Example

This example demonstrates the East Syriac Cross (♱) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2671";
  }
 </style>
</head>
<body>
<p>East Syriac Cross using Hexadecimal: &#x2671;</p>
<p>East Syriac Cross using HTML Code: &#9841;</p>
<p id="point">East Syriac Cross using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2671 is supported in modern browsers when rendered with a font that includes Miscellaneous Symbols:

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

👀 Live Preview

See the East Syriac Cross (♱) in religious and cultural contexts:

Large glyph
Church page ♱ Syriac Christian community
Liturgical ♱ Worship & prayer materials
Heritage ♱ Historical & theological docs
Numeric refs &#x2671; &#9841;

🧠 How It Works

1

Hexadecimal Code

&#x2671; uses the Unicode hexadecimal value 2671 to display the East Syriac Cross. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2671 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+2671 in the Miscellaneous Symbols block (U+2600–U+26FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The East Syriac Cross (♱) is commonly used in:

⛪ Religious sites

Church pages, diocesan sites, and Syriac Christian community resources.

📜 Historical docs

Theological, historical, and liturgical documents.

✝ Syriac Christianity

Educational and reference content about East Syriac tradition.

🏛 Heritage

Cultural, heritage, and religious art contexts.

📖 Liturgical

Worship materials, prayers, and liturgical texts.

🏫 Education

Courses and articles on Christian symbolism.

💡 Best Practices

Do

  • Use &#x2671; or &#9841; consistently in markup
  • Use fonts that support Miscellaneous Symbols (system UI, Symbola)
  • Add aria-label with clear meaning (e.g. “East Syriac Cross”)
  • Pair ♱ with visible text on religious and heritage pages
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2671
  • Confuse ♱ (East Syriac Cross) with ✝ (Latin cross) or ☦ (Orthodox cross)
  • Put CSS escape \2671 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical interfaces
  • Assume decorative fonts include all Miscellaneous Symbols

Key Takeaways

1

Two HTML numeric references render ♱

&#x2671; &#9841;
2

For CSS stylesheets, use the escape in the content property

\2671
3

Unicode U+2671 — EAST SYRIAC CROSS

4

Miscellaneous Symbols block (U+2600–U+26FF)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2671; (hex), &#9841; (decimal), or \2671 in CSS content. There is no named entity. All produce ♱.
U+2671 (EAST SYRIAC CROSS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2671, decimal 9841. A religious symbol used in Syriac Christianity.
In religious websites and church pages, historical and theological documents, Syriac Christianity resources, cultural and heritage sites, liturgical content, and educational materials on Christian symbolism.
HTML references (&#9841; or &#x2671;) go in markup. The CSS escape \2671 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Miscellaneous Symbols including U+2671 have no named entity—use &#x2671; or &#9841; in HTML.

Explore More HTML Entities!

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