HTML Entity for Cross of Jerusalem (☩)

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

What You'll Learn

How to display the Cross of Jerusalem (☩) in HTML and CSS. This character is U+2629 (CROSS OF JERUSALEM) in the Miscellaneous Symbols block (U+2600–U+26FF). It is used in religious, historical, and heraldic contexts—not a combining diacritic like Cross Above or Cross Below.

There is no named HTML entity for U+2629. Use ☩, ☩, or \2629 in CSS content. Do not confuse ☩ with astronomical Conjunction U+260C (☌) or other cross symbols in Unicode.

⚡ Quick Reference — Cross of Jerusalem

Unicode U+2629

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

Hex Code ☩

Hexadecimal reference

HTML Code ☩

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2629
Hex code       ☩
HTML code      ☩
Named entity   —
CSS code       \2629
1

Complete HTML Example

This example shows U+2629 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2629";
  }
 </style>
</head>
<body>
<p>Cross of Jerusalem using Hexadecimal: &#x2629;</p>
<p>Cross of Jerusalem using HTML Code: &#9769;</p>
<p id="point">Cross of Jerusalem using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2629 is supported in modern browsers; use a font with good Miscellaneous Symbols coverage:

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

👀 Live Preview

See the Cross of Jerusalem (☩) in context:

Standalone
Religious Jerusalem cross ☩   liturgical symbol
Heraldic Coat of arms ☩ crusader heraldry
Not combining ☩ symbol   not U+033D / U+0353 diacritics
Monospace refs &#x2629; &#9769; \2629

🧠 How It Works

1

Hexadecimal Code

&#x2629; references code point U+2629 using hex digits 2629.

HTML markup
2

Decimal HTML Code

&#9769; is the decimal equivalent (9769) for the same character.

HTML markup
3

CSS Entity

\2629 is the CSS escape for U+2629, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Jerusalem cross: . Unicode U+2629 is in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.

Use Cases

Cross of Jerusalem (☩) commonly appears in:

⛪ Religious content

Church websites, liturgical text, Christian education, and religious publications.

📜 Heraldry

Coat of arms, crusader history, medieval references, and heraldry resources.

🎨 Decorative design

Invitations, certificates, memorials, and ceremonial web design.

📚 Education

Articles about religious symbols, Unicode tables, and cultural documentation.

🗺 Cultural travel

Content about Jerusalem, holy sites, and regions where the symbol is significant.

🔤 Symbol references

HTML entity guides and Miscellaneous Symbols glossaries.

♿ Accessibility

Pair the symbol with meaningful alt text or context in religious or cultural content.

💡 Best Practices

Do

  • Use &#x2629; or &#9769; for the Jerusalem cross
  • Choose fonts that support Miscellaneous Symbols (U+2600–U+26FF)
  • Keep hex or decimal style consistent across the document
  • Use \2629 only inside CSS content
  • Provide context or alt text for religious and cultural meaning

Don’t

  • Confuse U+2629 (☩) with combining Cross Above/Below (U+033D, U+0353)
  • Confuse ☩ with Conjunction ☌ (U+260C) or other cross glyphs
  • Assume a named entity exists—U+2629 has none
  • Put CSS escape \2629 in HTML text nodes
  • Use the symbol without sensitivity in inappropriate contexts

Key Takeaways

1

No named entity—use numeric references

&#x2629; &#9769;
2

For CSS stylesheets, use the escape in the content property

\2629
3

U+2629 CROSS OF JERUSALEM

4

Miscellaneous Symbols—not a combining diacritic

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2629; (hex), &#9769; (decimal), or \2629 in CSS content. There is no named HTML entity for U+2629.
U+2629 (CROSS OF JERUSALEM). Miscellaneous Symbols (U+2600–U+26FF). Hex 2629, decimal 9769.
In religious and church content, historical and heraldic documentation, decorative or ceremonial design, and educational symbol references when you need the Jerusalem cross (☩). Use numeric references since there is no named entity.
HTML numeric references (&#9769; or &#x2629;) go in markup. The CSS escape \2629 is used in stylesheets, typically in the content property of pseudo-elements. Both render ☩.
HTML5 named entities focus on commonly used characters. U+2629 is a specialized symbol, so use &#x2629; or &#9769;. See symbol entities for copyright, crosses, and related marks.

Explore More HTML Entities!

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