Symbols & Shapes

Multiplication X / Cross Mark ()

Standard cross mark (X) for dismiss buttons, error badges, and rejected options.

One-Click Copyable Code Formats

HTML Named Entity
✕
HTML Decimal Code
✕
HTML Hex Code
✕
CSS content (\XXXX)
\2715
JavaScript Unicode (\uXXXX)
\u2715
URL Percent Encoded
%E2%9C%95

Real-World Implementation Snippets

HTML5 Document
<p>Example: &#10005;</p>
CSS ::before / ::after
.badge::before { content: '\2715 '; }
React JSX / TypeScript
<span>{"\u2715"}</span>
Frequently Asked Questions

Multiplication X / Cross Mark (✕) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&#10005;". If using numeric codes, you can use the decimal code "&#10005;" or hex code "&#x2715;".