HTML Entity for West Syriac Cross (♰)

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

What You'll Learn

How to display the West Syriac Cross (♰) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2670 (WEST SYRIAC CROSS) in the Miscellaneous Symbols block (U+2600–U+26FF)—a Christian cross variant used in Syriac Christianity, liturgical materials, and historical documents.

Render it with ♰, ♰, or CSS escape \2670. There is no named HTML entity. Do not confuse ♰ with East Syriac Cross ♱ (U+2671) or Latin cross ✝ (U+271D).

⚡ Quick Reference — West Syriac Cross

Unicode U+2670

Miscellaneous Symbols block

Hex Code ♰

Hexadecimal reference

HTML Code ♰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2670
Hex code       ♰
HTML code      ♰
Named entity   (none)
CSS code       \2670
Meaning        West Syriac cross
Related        U+2671 = ♱ (East Syriac Cross)
               U+271D = ✝ (Latin cross)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing the West Syriac Cross (♰) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2670";
  }
 </style>
</head>
<body>
<p>West Syriac Cross (hex): &#x2670;</p>
<p>West Syriac Cross (decimal): &#9840;</p>
<p id="point">West Syriac Cross (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

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

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

👀 Live Preview

See the West Syriac Cross (♰) in religious and cultural contexts:

Large glyph
Church page♰ Syriac Christian community
Liturgical♰ Worship & prayer materials
Not the same as♱ (U+2671, East Syriac Cross)  |  ✝ (Latin cross)
Numeric refs&#x2670; &#9840; \2670

🧠 How It Works

1

Hexadecimal Code

&#x2670; uses the Unicode hexadecimal value 2670 to display the West Syriac Cross. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9840; uses the decimal Unicode value 9840 to display the same character. A common method for religious symbols in HTML.

HTML markup
3

CSS Entity

\2670 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 the glyph: . Unicode U+2670 sits in Miscellaneous Symbols. Not the same as ♱ (East Syriac Cross) or ✝ (Latin cross).

Use Cases

The West Syriac Cross (♰) is commonly used in:

⛬ Religious content

Christian websites, religious content, and spiritual pages.

📚 Historical content

Educational material about Syriac Christianity and Christian history.

🌐 Cultural web content

Cultural sites and content about Christian traditions and symbols.

⛪ Christian websites

Church sites, Christian organizations, and educational content.

🎓 Educational content

History lessons and instructional content about religious symbols.

🎨 Creative projects

Artistic content and design showcases with religious themes.

📖 Symbolic representation

Theological discussions and religious guidance content.

💡 Best Practices

Do

  • Pair ♰ with accessible text or aria-label for screen readers
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Miscellaneous Symbols characters
  • Provide cultural and religious context when using the symbol

Don’t

  • Confuse ♰ (West Syriac Cross) with ♱ (East Syriac Cross)
  • Substitute ✝ when ♰ is specifically required
  • Mix entity styles randomly in one file
  • Use CSS escape \2670 inside HTML markup
  • Expect a named HTML entity—none exists for ♰

Key Takeaways

1

Type ♰ directly, or use hex/decimal references

&#x2670; &#9840;
2

For CSS stylesheets, use the escape in the content property

\2670
3

Unicode U+2670 — WEST SYRIAC CROSS (Miscellaneous Symbols)

4

Not the same as ♱ (East Syriac Cross) or ✝ (Latin cross)

❓ Frequently Asked Questions

Use &#x2670; (hex), &#9840; (decimal), or \2670 in CSS content. There is no named HTML entity. In UTF-8 you can also type ♰ directly.
U+2670 (WEST SYRIAC CROSS). Miscellaneous Symbols block. Hex 2670, decimal 9840. Related East Syriac Cross is U+2671 (♱).
In Christian and religious websites, historical and educational content about Syriac Christianity, cultural and spiritual content, church and organization sites, and any web content using Syriac Christian symbolism.
HTML entities (&#9840; or &#x2670;) go directly in markup. The CSS escape \2670 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Miscellaneous Symbols like ♰ use numeric codes. Use &#9840; or &#x2670; in HTML, or \2670 in CSS.

Explore More HTML Entities!

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