HTML Entity for Cross of Lorraine (☨)

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

What You'll Learn

How to display the Cross of Lorraine (☨) in HTML and CSS. This character is U+2628 (CROSS OF LORRAINE) in the Miscellaneous Symbols block (U+2600–U+26FF). It is used in historical, heraldic, and emblem contexts—including association with the Free French forces—and is a double-barred cross distinct from the Cross of Jerusalem U+2629 (☩).

There is no named HTML entity for U+2628. Use ☨, ☨, or \2628 in CSS content. Not a combining diacritic like Cross Above or Cross Below. Do not confuse ☨ with ☩ or Conjunction ☌.

⚡ Quick Reference — Cross of Lorraine

Unicode U+2628

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+2628
Hex code       ☨
HTML code      ☨
Named entity   —
CSS code       \2628
1

Complete HTML Example

This example shows U+2628 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: "\2628";
  }
 </style>
</head>
<body>
<p>Cross of Lorraine using Hexadecimal: &#x2628;</p>
<p>Cross of Lorraine using HTML Code: &#9768;</p>
<p id="point">Cross of Lorraine using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2628 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 Lorraine (☨) in context:

Standalone
History Free French ☨   WWII resistance emblem
vs Jerusalem ☨ Lorraine   ☩ Jerusalem
Not combining ☨ symbol   not U+033D / U+0353 diacritics
Monospace refs &#x2628; &#9768; \2628

🧠 How It Works

1

Hexadecimal Code

&#x2628; references code point U+2628 using hex digits 2628.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

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

Use Cases

Cross of Lorraine (☨) commonly appears in:

📜 Heraldry

French history, Lorraine region, coats of arms, and double-barred cross documentation.

⚔ Military history

Free French forces, WWII resistance, and military emblems featuring ☨.

🎨 Emblem design

Branding, digital art, certificates, and decorative design with the Lorraine cross.

📚 Education

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

🗺 Regional content

Lorraine (France), regional identity, and culturally significant symbolism.

🔤 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 &#x2628; or &#9768; for the Lorraine cross
  • Choose fonts that support Miscellaneous Symbols (U+2600–U+26FF)
  • Keep hex or decimal style consistent across the document
  • Use \2628 only inside CSS content
  • Provide context or alt text for historical and cultural meaning

Don’t

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

Key Takeaways

1

No named entity—use numeric references

&#x2628; &#9768;
2

For CSS stylesheets, use the escape in the content property

\2628
3

U+2628 CROSS OF LORRAINE

4

Miscellaneous Symbols—not a combining diacritic

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2628; (hex), &#9768; (decimal), or \2628 in CSS content. There is no named HTML entity for U+2628.
U+2628 (CROSS OF LORRAINE). Miscellaneous Symbols (U+2600–U+26FF). Hex 2628, decimal 9768.
In historical and heraldic documentation, French/Lorraine regional content, emblem design, and educational symbol references when you need the Lorraine cross (☨). Use numeric references since there is no named entity.
HTML numeric references (&#9768; or &#x2628;) go in markup. The CSS escape \2628 is used in stylesheets, typically in the content property of pseudo-elements. Both render ☨.
HTML5 named entities focus on commonly used characters. U+2628 is a specialized symbol, so use &#x2628; or &#9768;. 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