HTML Entity for Cross of Jerusalem (☩)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2629

What Is Cross of Jerusalem?

Cross of Jerusalem (☩) is the Unicode character at U+2629 in the Miscellaneous Symbols block. It is a spacing heraldic / religious glyph — often called the Jerusalem cross — and is not a combining diacritic.

Remember
Character     ☩
Unicode       U+2629
Hex entity    ☩
Decimal       ☩
CSS escape    \2629
Named entity  (none for U+2629)
Not the same  ☨ U+2628 · ✝ U+271D · ✠ U+2720

Prefer typing ☩ in UTF-8 HTML when your editor supports it; use ☩ or ☩ when you need an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character☩HTML text (UTF-8)
Hex entity☩HTML markup
Decimal entity☩HTML markup
CSS escape\2629Stylesheet content
Cross of Lorraine☨ U+2628Different double-barred cross — not U+2629

When to Use Which

SituationUse
Jerusalem / Crusader cross☩ or type ☩
Cross of Lorraine☨ U+2628
Simple Latin cross✝ U+271D
Generated / numeric-only markup☩ or ☩
Generated text via ::before / ::aftercontent: "\2629"

Live Preview

Cross of Jerusalem rendered in common text contexts.

Inline label Jerusalem cross ☩
Large glyph ☩
Compared ☩   ☨   ✝   ✠
Monospace mark: ☩
With entities Hex: ☩ | Decimal: ☩

Complete HTML Example

One page that shows Cross of Jerusalem with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ☩ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Cross of Jerusalem (☩) in HTML</title>
  <style>
    #point::after {
      content: "\2629";
    }
  </style>
</head>
<body>
  <p>Cross of Jerusalem using Hex Code: &#x2629;</p>
  <p>Cross of Jerusalem using HTML Code: &#9769;</p>
  <p id="point">Cross of Jerusalem using CSS Entity: </p>
  <p>Typed directly: ☩</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2629 → &#x2629; in HTML → ☩.

2. Decimal: same code point as 9769 → &#9769;. Same result as hex.

3. CSS: use \2629 in content (not an HTML entity). #point::after appends that ☩ after the paragraph text.

4. Typed: in a UTF-8 page you can paste ☩ directly. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Cross of Jerusalem.

Named?

No named entity

HTML5 has no &…; name for U+2629. Use &#x2629; or &#9769;.

☨

Not Cross of Lorraine

☨ (U+2628) is a double-barred cross. Do not swap it for the Jerusalem cross.

Combining

Not a diacritic

U+2629 is a spacing symbol. Combining cross above (U+033D) and cross below (U+0353) attach to a base letter.

CSS vs HTML

Do not mix escapes

\2629 belongs in CSS strings. &#x2629; / &#9769; belong in HTML.

Fonts

Symbol font coverage

Some fonts omit U+2629. Prefer a font with Miscellaneous Symbols coverage, or use an SVG for logos.

Semicolon

End references

Always finish with ; — write &#9769;, not &#9769.

Browser Support

Cross of Jerusalem (U+2629) and its numeric entity forms (&#x2629;, &#9769;, CSS \\2629) are supported in all mainstream browsers. Visible glyphs depend on font coverage.

✓ Universal support

Cross of Jerusalem (&#x2629;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2629 / entities Full support

Bottom line: Use &#x2629; or &#9769; in HTML when you need this glyph, and \\2629 only inside CSS content. Do not confuse with Cross of Lorraine (U+2628).

Key Takeaways

  • Unicode: Cross of Jerusalem is U+2629 (decimal 9769) — glyph ☩.
  • HTML: type ☩, or use &#x2629; / &#9769; (no named entity).
  • CSS: use \2629 inside content for generated text.
  • Watch out: ☩ ≠ ☨ ≠ ✝ (Jerusalem ≠ Lorraine ≠ Latin cross).

One line: U+2629 → &#x2629; / &#9769; / CSS \2629 / type ☩.

Frequently Asked Questions

Use &#x2629; (hex), &#9769; (decimal), type ☩ directly in UTF-8, or the CSS escape \2629 in content. There is no named HTML entity for U+2629.
U+2629 (hex 2629, decimal 9769). It belongs to the Miscellaneous Symbols block and is also called the Jerusalem cross.
No. Use numeric references like &#9769; or &#x2629;, or type the character ☩ in a UTF-8 document.
Use it in heraldic, historical, or religious content that needs the Jerusalem cross glyph. Prefer SVG or an image when you need a precise logo-style mark across all devices.
HTML entities (&#9769; or &#x2629;) go in markup. The CSS escape \2629 goes in stylesheet strings (usually content on ::before/::after).
☩ (U+2629) is the Cross of Jerusalem. ☨ (U+2628) is the Cross of Lorraine (double-barred). ✝ (U+271D) is the Latin cross — a different, simpler cross shape.

Did you know?

Cross of Jerusalem (Jerusalem cross) is Unicode U+2629 (decimal 9769) — glyph ☩ in the Miscellaneous Symbols block. HTML5 has no named entity. It is a spacing heraldic / religious symbol (large cross with four smaller crosses). It is not Cross of Lorraine ☨ (U+2628) and not Latin cross ✝ (U+271D).

Next: Cross of Lorraine

Learn the HTML entity for Cross of Lorraine (U+2628).

Cross of Lorraine tutorial →

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