HTML Entity for Maltese Cross (✠)

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

What You'll Learn

How to display the Maltese Cross (✠) in HTML using hexadecimal, decimal, the named entity ✠, and CSS escape methods. This character is U+2720 (MALTESE CROSS) in the Dingbats block (U+2700–U+27BF)—a four-pointed cross symbol used in heraldry, historical references, religious iconography, and design.

Render it with ✠, ✠, ✠, or CSS escape \2720. Do not confuse ✠ with † (dagger) or ✝ (Latin cross).

⚡ Quick Reference — Maltese Cross

Unicode U+2720

Dingbats block

Hex Code ✠

Hexadecimal reference

HTML Code ✠

Decimal reference

Named Entity ✠

HTML5 named entity for U+2720

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2720
Hex code       ✠
HTML code      ✠
Named entity   ✠
CSS code       \2720
Related        U+2020 = dagger (†); U+271D = Latin cross (✝)
1

Complete HTML Example

This example demonstrates the Maltese Cross (✠) using hexadecimal code, decimal HTML code, the named entity ✠, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2720";
  }
 </style>
</head>
<body>
<p>Maltese Cross using Hexadecimal: &#x2720;</p>
<p>Maltese Cross using HTML Code: &#10016;</p>
<p>Maltese Cross using HTML Entity: &malt;</p>
<p id="point">Maltese Cross using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Maltese Cross entity is universally supported in modern browsers:

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

👀 Live Preview

See the Maltese Cross (✠) in context and compared with related cross symbols:

Inline text Order of Malta: ✠
Large glyph
Cross symbols ✠ Maltese   ✝ Latin   † Dagger
Numeric refs &#x2720; &#10016; &malt;
Named entity &malt; is the readable option

🧠 How It Works

1

Hexadecimal Code

&#x2720; uses the Unicode hexadecimal value 2720 to display the Maltese Cross. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10016; uses the decimal Unicode value 10016 to display the same character.

HTML markup
3

Named Entity

&malt; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\2720 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Maltese Cross glyph: . Unicode U+2720 sits in the Dingbats block (U+2700–U+27BF).

Use Cases

The Maltese Cross (✠) commonly appears in:

🏛 Historical content

Articles on the Knights of Malta, heraldry, and medieval history.

⛪ Religious iconography

Church histories, religious reference pages, and liturgical notation.

🎨 Design projects

Logos, badges, emblems, and decorative typography in web design.

🗺 Maps & guides

Historical maps, travel guides, and cultural heritage sites.

📚 Footnotes

Scholarly texts and reference markers using cross-style dingbats.

📝 Unicode reference

Entity tutorials, symbol dictionaries, and Dingbats block documentation.

💡 Best Practices

Do

  • Use &malt; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Add aria-label when the symbol stands alone
  • Test the glyph across browsers and fonts
  • Pair ✠ with descriptive text on first use

Don’t

  • Confuse ✠ (Maltese cross) with † (dagger) or ✝ (Latin cross)
  • Mix entity styles randomly in one file
  • Put CSS escape \2720 in HTML text nodes
  • Use HTML entities in JS (use \u2720)
  • Use padded Unicode notation like U+02720—the correct value is U+2720

Key Takeaways

1

Three HTML references all render ✠

&#x2720; &#10016; &malt;
2

For CSS stylesheets, use the escape in the content property

\2720
3

Unicode U+2720 — MALTESE CROSS in the Dingbats block

4

Prefer &malt; for readability—it’s the most self-descriptive named entity

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &malt; (named), &#x2720; (hex), &#10016; (decimal), or \2720 in CSS content. All produce ✠.
U+2720 (MALTESE CROSS). Dingbats block (U+2700–U+27BF). Hex 2720, decimal 10016. Named entity: &malt;.
In historical content, heraldry, religious iconography, design projects, maps, footnotes, and any reference material where the standard Maltese cross symbol (✠) is appropriate.
HTML entities (&malt;, &#10016;, or &#x2720;) go directly in markup. The CSS escape \2720 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &malt;, &#10016;, and &#x2720; are equivalent in modern browsers and all render ✠. Do not confuse with other cross or dagger symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — crosses, dingbats, currency 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