Math & Science
×

Multiplication Sign (×)

The mathematical cross operator used for multiplication, screen resolutions (e.g. 1920×1080), dimensions, and close modal buttons ("X").

One-Click Copyable Code Formats

HTML Named Entity
×
HTML Decimal Code
×
HTML Hex Code
×
CSS content (\XXXX)
\00D7
JavaScript Unicode (\uXXXX)
\u00D7
URL Percent Encoded
%C3%97

Real-World Implementation Snippets

HTML5 Document
<p>Example: &times;</p>
CSS ::before / ::after
.badge::before { content: '\00D7 '; }
React JSX / TypeScript
<span>{"\u00D7"}</span>
Frequently Asked Questions

Multiplication Sign (×) HTML Entity FAQ

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

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