HTML Entity for Orthodox Cross (☦)

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

What You'll Learn

How to display the Orthodox Cross (☦) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2626 (ORTHODOX CROSS) in the Miscellaneous Symbols block (U+2600–U+26FF)—a three-bar cross associated with Eastern Orthodox Christianity, also known as the Russian or Byzantine cross.

Render it with ☦, ☦, or CSS escape \2626. There is no named HTML entity. Do not confuse ☦ with U+271D (✝, Latin cross), U+2629 (☩, cross of Jerusalem), or decorative Dingbats crosses like U+271B (✛, open centre cross).

⚡ Quick Reference — Orthodox Cross

Unicode U+2626

Miscellaneous Symbols

Hex Code ☦

Hexadecimal reference

HTML Code ☦

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2626
Hex code       ☦
HTML code      ☦
Named entity   (none)
CSS code       \2626
Meaning        Orthodox cross (three-bar cross)
Related        U+271D = Latin cross (✝)
               U+2629 = cross of Jerusalem (☩)
               U+2628 = cross of Lorraine (☨)
               U+271B = open centre cross (✛)
Block          Miscellaneous Symbols (U+2600–U+26FF)
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: "\2626";
  }
 </style>
</head>
<body>
<p>Orthodox cross (hex): &#x2626;</p>
<p>Orthodox cross (decimal): &#9766;</p>
<p id="point">Orthodox cross (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Orthodox Cross (☦) is widely supported in all modern browsers:

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

👀 Live Preview

See the Orthodox Cross (☦) in religious and cultural contexts:

Single symbol
Church heading ☦ St. Nicholas Orthodox Church
Memorial line In memory ☦ 1950–2024
Not the same as Latin ✝  |  Jerusalem ☩  |  Open ✛
Numeric refs &#x2626; &#9766; \2626

🧠 How It Works

1

Hexadecimal Code

&#x2626; uses the Unicode hexadecimal value 2626 to display the Orthodox cross.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Religious cross result

All three methods render . Unicode U+2626 in Miscellaneous Symbols. Next: Ounce Sign (℥).

Use Cases

The Orthodox Cross (☦) is commonly used in:

⛪ Church websites

Eastern Orthodox parish sites, diocese pages, and liturgical calendars.

📚 Religious content

Articles, blogs, and educational material about Orthodox faith and history.

🙏 Memorial pages

Obituaries, remembrance sections, and commemorative web layouts.

🎨 Cultural design

Heraldic, historical, and symbolic typography in Eastern European contexts.

💻 Web components

Icon-like symbols in navigation or section headers without image assets.

📋 Unicode references

Character pickers, entity documentation, and Miscellaneous Symbols guides.

♿ Accessibility

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

💡 Best Practices

Do

  • Use &#x2626; or &#9766; for inline Orthodox cross symbols
  • Provide surrounding text context for religious and memorial use
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project for consistency
  • Use the correct cross for the tradition—☦ for Orthodox, not ✝ for Latin rite contexts

Don’t

  • Confuse ☦ with Latin cross ✝, Jerusalem cross ☩, or decorative ✛
  • Use padded Unicode notation like U+02626—the correct value is U+2626
  • Use CSS escape \2626 in HTML text nodes
  • Use religious symbols decoratively without cultural sensitivity
  • Assume every font renders ☦ identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+2626

&#x2626; &#9766;
2

For CSS stylesheets, use \2626 in the content property

3

Unicode U+2626 — ORTHODOX CROSS (three-bar cross)

4

Distinct from Latin ✝, Jerusalem ☩, and open ✛

❓ Frequently Asked Questions

Use &#x2626; (hex), &#9766; (decimal), or \2626 in CSS content. There is no named entity. All three render ☦.
U+2626 (ORTHODOX CROSS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2626, decimal 9766.
No. ☦ (U+2626) is a three-bar Orthodox cross in Miscellaneous Symbols. ✝ (U+271D) is LATIN CROSS in Dingbats—a different single-bar shape used more widely in Western Christian contexts.
For Eastern Orthodox church websites, religious and cultural content, memorial pages, historical articles, and any context requiring the distinctive three-bar Orthodox cross symbol.
Named HTML entities cover a subset of common characters. U+2626 uses numeric hex or decimal codes or CSS escapes, which is standard for Miscellaneous Symbols religious characters.

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