HTML Entity for Saltire (☓)

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

What You'll Learn

How to display the Saltire symbol (☓) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2613 (SALTIRE) in the Miscellaneous Symbols block (U+2600–U+26FF)—an X-shaped cross, also known as St. Andrew’s cross, used in heraldry, flags, and as a cancel mark.

Use ☓, ☓, or CSS \2613. There is no named HTML entity. Do not confuse ☓ with U+2717 (✗, ballot X) or U+00D7 (×, multiplication sign / ×).

⚡ Quick Reference — Saltire

Unicode U+2613

Miscellaneous Symbols

Hex Code ☓

Hexadecimal reference

HTML Code ☓

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2613
Hex code       ☓
HTML code      ☓
Named entity   (none)
CSS code       \2613
Meaning        X-shaped cross (St. Andrew’s cross)
Related        U+2717 = Ballot X (✗)
               U+2718 = Heavy ballot X (✘)
1

Complete HTML Example

This example demonstrates the Saltire symbol (☓) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2613";
  }
 </style>
</head>
<body>
<p>Saltire using Hexadecimal: &#x2613;</p>
<p>Saltire using HTML Code: &#9747;</p>
<p id="point">Saltire using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Saltire symbol (☓) is supported in all modern browsers when using numeric HTML entities or CSS escapes:

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

👀 Live Preview

See ☓ rendered live and compared with similar X-shaped symbols:

Large glyph
Cancel mark Invalid ☓   Removed ☓
vs ballot X ☓ saltire   vs   ✗ ballot X
Numeric refs &#x2613; &#9747; \2613

🧠 How It Works

1

Hexadecimal Code

&#x2613; uses Unicode hexadecimal 2613 to display ☓ in HTML markup.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2613 in the Miscellaneous Symbols block (U+2600–U+26FF). No named entity.

Use Cases

The Saltire symbol (☓) commonly appears in:

🏴 Heraldry

Coat of arms, blazons, and heraldic documentation.

🇩🇰 Scottish themes

St. Andrew’s cross references, cultural and historical content.

📖 Historical

Medieval references, flag history, and educational materials.

❌ Cancel marks

Invalid, removed, or negative indicators in lists and UI.

✨ Decorative

X-shaped cross motifs in typography and design layouts.

🌐 Symbol guides

Unicode and HTML entity reference pages.

💡 Best Practices

Do

  • Use &#x2613; or &#9747; in HTML (no named entity)
  • Add aria-label when ☓ conveys meaning (e.g. “cancelled”)
  • Use CSS content for reusable cancel or mark components
  • Declare UTF-8 with <meta charset="utf-8">
  • Use respectfully in Scottish and heraldic cultural contexts

Don’t

  • Confuse ☓ with ✗ (ballot X) or × (multiplication sign)
  • Expect a named HTML entity for U+2613
  • Put CSS escape \2613 in HTML text nodes
  • Assume every font renders ☓ clearly at small sizes
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS insert ☓

&#x2613; &#9747;
2

For CSS, use \2613 in the content property

3

Unicode U+2613 — SALTIRE (St. Andrew’s cross)

4

No named entity—use hex or decimal

5

Not the same as ✗ (ballot X) or ✘ (heavy ballot X)

❓ Frequently Asked Questions

Use &#x2613; (hex), &#9747; (decimal), or \2613 in CSS content. There is no named HTML entity. All three methods render ☓.
U+2613 (SALTIRE). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2613, decimal 9747. An X-shaped cross, also called St. Andrew’s cross.
In heraldry, flag and Scottish-themed content, historical references, cancel or X marks, and decorative X-shaped cross notation.
U+2613 (☓) is SALTIRE—an X-shaped cross in a box, used in heraldry and as a cancel mark. U+2717 (✗) is BALLOT X—a simpler checkmark-style X for voting and UI. They look similar but have different Unicode meanings.
HTML references (&#9747; or &#x2613;) go in markup. The CSS escape \2613 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ☓.

Explore More HTML Entities!

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