🔣 Symbol Reference

Cross and X Mark Symbols

Unicode provides various cross and X mark characters including the heavy ballot X ✗, multiplication signs, plus signs, and decorative crosses for use as cancel or error indicators. This guide catalogs Unicode cross and X symbols with code points, HTML entities, and copy-paste support.

·

The simple "X" is one of humanity's oldest marks — scratched into clay tablets, painted on doors, printed on ballots. In Unicode, what looks like a single concept actually spans dozens of distinct characters: ballot crosses, multiplication signs, saltires, heavy X marks, emoji crosses, dagger symbols, and Latin-cross religious symbols. Choosing the wrong one can break mathematical formulas, confuse screen readers, or produce unexpected rendering. This guide maps every cross and X mark character in Unicode, explains their semantic differences, and helps you pick the right one for your context.

Quick Copy-Paste Table

Symbol Name Code Point HTML Entity Category
Multiplication X U+2715 ✕ General
Heavy Multiplication X U+2716 ✖ General
Ballot X U+2717 ✗ Ballot
Heavy Ballot X U+2718 ✘ Ballot
Cross Mark U+274C ❌ Emoji
Negative Squared Cross Mark U+274E ❎ Emoji
× Multiplication Sign U+00D7 × Math
Box Drawings Light Diagonal Cross U+2573 ╳ Box Drawing
Saltire U+2613 ☓ Heraldry
Vector or Cross Product U+2A2F ⨯ Math
Dagger U+2020 † General
Double Dagger U+2021 ‡ General
Latin Cross U+271D ✝ Religious
Shadowed White Latin Cross U+271E ✞ Religious
Outlined Latin Cross U+271F ✟ Religious
Cross of Lorraine U+2628 ☨ Religious
Cross of Jerusalem U+2629 ☩ Religious
Circled Times U+2297 ⊗ Math
Circled Division Slash U+2298 ⊘ Math

The X Marks: Ballot, Multiplication, and Emoji

Ballot X Characters (U+2717, U+2718)

✗ (U+2717, BALLOT X) and ✘ (U+2718, HEAVY BALLOT X) originate from paper voting forms where voters mark their choice with an X. In digital contexts, they are the standard "negative" or "failure" indicators paired with check marks ✓ (U+2713) and ✔ (U+2714).

The weight difference matters for visual pairing:

Positive Negative Weight
✓ (U+2713) ✗ (U+2717) Light
✔ (U+2714) ✘ (U+2718) Heavy

Always match weights — using ✔ with ✗ creates an unbalanced visual hierarchy.

<span style="color:green">&#x2714; Passed</span>
<span style="color:red">&#x2718; Failed</span>

Multiplication X Characters (U+2715, U+2716)

✕ (U+2715, MULTIPLICATION X) and ✖ (U+2716, HEAVY MULTIPLICATION X) are general- purpose X shapes. Despite the name "multiplication," these are classified as Dingbats, not mathematical operators. They are commonly used as close buttons and cancel icons in web interfaces.

<button aria-label="Close">&#x2715;</button>
<button aria-label="Remove">&#x2716;</button>

Emoji Cross Marks (U+274C, U+274E)

❌ (U+274C, CROSS MARK) is the emoji-style X. On most platforms it renders as a large red X. ❎ (U+274E, NEGATIVE SQUARED CROSS MARK) renders as an X inside a green or gray square. Both are full-width emoji and should not be used in running text where inline symbols are expected.

<!-- Emoji usage in status messages -->
<span>&#x274C; Connection failed</span>
<span>&#x274E; Feature unavailable</span>

The Multiplication Sign: × (U+00D7)

The true mathematical multiplication sign × (U+00D7) lives in the Latin-1 Supplement block, not in the Dingbats or Geometric Shapes blocks. It is semantically a mathematical operator and is the correct character for expressing multiplication in text: "3 × 4 = 12".

Common Confusion: x vs × vs ✕

Character Code Point Correct Usage Incorrect Usage
x U+0078 Variable name, Latin letter Multiplication, close button
× U+00D7 Mathematical multiplication Close button, generic X
U+2715 Close button, generic X mark Mathematical multiplication
U+2A2F Cross product (vectors) General multiplication

Using the letter "x" for multiplication is a common mistake that causes problems in mathematical typesetting, search indexing, and accessibility. Screen readers will read "x" as the letter, not as "times."

# Correct: use the multiplication sign
result = "3 \u00D7 4 = 12"    # 3 × 4 = 12

# For cross product, use the dedicated operator
formula = "a \u2A2F b"         # a ⨯ b

Religious Cross Symbols

Unicode encodes numerous cross symbols used in religious, heraldic, and historical contexts:

Symbol Name Code Point Tradition
Latin Cross U+271D Christianity (general)
Shadowed White Latin Cross U+271E Christianity (decorative)
Outlined Latin Cross U+271F Christianity (decorative)
Orthodox Cross U+2626 Eastern Orthodoxy
Cross of Lorraine U+2628 French patriotism, heraldry
Cross of Jerusalem U+2629 Crusades, heraldry
Turned Dagger U+2E38 Inverted cross symbol

These are encoded in the Miscellaneous Symbols and Dingbats blocks. They should be used with cultural sensitivity — their meaning varies significantly across cultures.

Daggers (U+2020, U+2021)

The dagger † (U+2020) and double dagger ‡ (U+2021) are typographic reference marks, not X marks, but they are cross-shaped and frequently searched alongside crosses:

Symbol Name Code Point Primary Use
Dagger U+2020 Footnote (second reference), obituary
Double Dagger U+2021 Footnote (third reference)

In footnote notation, the sequence is: * (asterisk) → † (dagger) → ‡ (double dagger) → § (section sign). Daggers are also used in linguistics to mark reconstructed forms (†*proto-word) and in biology for extinct species.

<p>This claim is disputed.&#x2020;</p>
<footer>
  <p>&#x2020; See Johnson (2019) for a contrary analysis.</p>
</footer>

The Saltire: ☓ (U+2613)

The saltire ☓ (U+2613) is a diagonal cross associated with heraldry (Saint Andrew's Cross, the flag of Scotland). It renders as a clean diagonal X and is visually distinct from the rounder ballot and multiplication X characters.

Box Drawing Cross: ╳ (U+2573)

The Box Drawings block includes ╳ (U+2573, BOX DRAWINGS LIGHT DIAGONAL CROSS), which forms an X using thin strokes aligned to the box-drawing grid. This character is intended for text-based user interfaces (TUIs) and terminal applications where lines must connect precisely.

Close Button Best Practices

The "X" close button is one of the most common UI elements on the web. Here is the recommended approach:

<!-- Accessible close button -->
<button type="button" aria-label="Close">
  <span aria-hidden="true">&#x2715;</span>
</button>

Using a Unicode character (✕ U+2715 or × U+00D7) is lightweight and accessible. The aria-label provides the screen reader text, while aria-hidden="true" on the symbol prevents the screen reader from announcing the character name.

Key Takeaways

  • ✗/✘ (Ballot X) are for pass/fail indicators; pair them with matching-weight check marks ✓/✔.
  • × (U+00D7) is the correct multiplication sign — never use the letter "x" for math.
  • ✕/✖ (Multiplication X) are Dingbats, not math operators — ideal for close buttons and UI dismiss actions.
  • ❌ (U+274C) is an emoji that renders as a large red X; avoid it in running text.
  • ⨯ (U+2A2F) is the dedicated cross product operator for vector mathematics.
  • Religious crosses (✝☦☨☩) have distinct cultural meanings — choose carefully.
  • For close buttons, use with aria-label="Close" for accessibility.

เพิ่มเติมใน Symbol Reference

Complete Arrow Symbols List

Unicode contains hundreds of arrow symbols spanning simple directional arrows, double arrows, …

All Check Mark and Tick Symbols

Unicode provides multiple check mark and tick symbols ranging from the classic …

Star and Asterisk Symbols

Unicode includes a rich collection of star shapes — from the simple …

Heart Symbols Complete Guide

Unicode contains dozens of heart symbols including the classic ♥, black and …

Currency Symbols Around the World

Unicode's Currency Symbols block and surrounding areas contain dedicated characters for over …

Mathematical Symbols and Operators

Unicode has dedicated blocks for mathematical operators, arrows, letterlike symbols, and alphanumeric …

Bracket and Parenthesis Symbols

Beyond the ASCII parentheses and square brackets, Unicode includes angle brackets, curly …

Bullet Point Symbols

Unicode offers a wide variety of bullet point characters beyond the standard …

Line and Box Drawing Characters

Unicode's Box Drawing block contains 128 characters for drawing lines, corners, intersections, …

Musical Note Symbols

Unicode includes musical note symbols such as ♩♪♫♬ in the Miscellaneous Symbols …

Fraction Symbols Guide

Unicode includes precomposed fraction characters for common fractions like ½ ¼ ¾ …

Superscript and Subscript Characters

Unicode provides precomposed superscript and subscript digits and letters — such as …

Circle Symbols

Unicode contains dozens of circle symbols including filled circles, outlined circles, circles …

Square and Rectangle Symbols

Unicode includes filled squares, outlined squares, small squares, medium squares, dashed squares, …

Triangle Symbols

Unicode provides a comprehensive set of triangle symbols in all orientations — …

Diamond Symbols

Unicode includes filled and outline diamond shapes, lozenge characters, and playing card …

Dash and Hyphen Symbols Guide

The hyphen-minus on your keyboard is just one of Unicode's many dash …

Quotation Mark Symbols Complete Guide

Unicode defines typographic quotation marks — curly quotes — for dozens of …

Copyright, Trademark & Legal Symbols

Unicode includes dedicated characters for the copyright symbol ©, registered trademark ®, …

Degree and Temperature Symbols

The degree symbol ° (U+00B0) and dedicated Celsius ℃ and Fahrenheit ℉ …

Circled and Enclosed Number Symbols

Unicode's Enclosed Alphanumerics block provides circled numbers ①②③, parenthesized numbers ⑴⑵⑶, and …

Roman Numeral Symbols

Unicode includes a Number Forms block with precomposed Roman numeral characters such …

Greek Alphabet Symbols for Math and Science

Greek letters like α β γ δ π Σ Ω are widely …

Decorative Dingbats

The Unicode Dingbats block (U+2700–U+27BF) contains 192 decorative symbols originally from the …

Playing Card Symbols

Unicode includes a Playing Cards block with characters for all 52 standard …

Chess Piece Symbols

Unicode provides characters for all six chess piece types in both white …

Zodiac and Astrological Symbols

Unicode's Miscellaneous Symbols block includes the 12 zodiac signs ♈♉♊♋♌♍♎♏♐♑♒♓, planetary symbols, …

Braille Pattern Characters

Unicode's Braille Patterns block (U+2800–U+28FF) encodes all 256 possible combinations of the …

Geometric Shapes Complete Guide

Unicode's Geometric Shapes block contains 96 characters covering circles, squares, triangles, diamonds, …

Letterlike Symbols

The Unicode Letterlike Symbols block contains mathematical and technical symbols derived from …

Technical Symbols Guide

Unicode's Miscellaneous Technical block contains symbols from computing, electronics, and engineering, including …

Combining Characters and Diacritics Guide

Diacritics are accent marks and other marks that attach to letters to …

Whitespace and Invisible Characters Guide

Unicode defines dozens of invisible characters beyond the ordinary space, including zero-width …

Warning and Hazard Signs

Unicode includes warning and hazard symbols such as the universal caution ⚠ …

Weather Symbols Guide

Unicode's Miscellaneous Symbols block includes sun ☀, cloud ☁, rain ☂, snow …

Religious Symbols in Unicode

Unicode includes symbols for many of the world's major religions including the …

Gender and Identity Symbols

Unicode includes the traditional male ♂ and female ♀ symbols from astronomy, …

Keyboard Shortcut Symbols Guide

Apple's macOS uses Unicode characters for keyboard modifier keys such as ⌘ …

Symbols for Social Media Bios

Unicode symbols like ▶ ◀ ► ★ ✦ ⚡ ✈ and hundreds …