Multiplication Sign (×)

HTML entity for the multiplication sign (×). Learn how to use × or × in HTML for math, dimensions, and close buttons.

Math

×

Multiplication Sign

All Formats

FormatValue
Character×
HTML Entity×
HTML Code (Decimal)×
UnicodeU+00D7
CSS Content\00D7
CategoryMath

About Multiplication Sign

The multiplication sign (×) is the proper typographical symbol for multiplication, as opposed to the lowercase letter "x" or the asterisk (*). It is used in mathematical expressions, dimensions (e.g., "1920 × 1080"), and sometimes as a close or dismiss icon.

In HTML, insert this symbol using ×, ×, or ×. The named entity × is one of the most commonly used HTML entities. It has been part of the HTML specification since version 2.0 and is universally supported. Many websites also use × for close buttons on modals and alerts.

The multiplication sign is part of the Latin-1 Supplement Unicode block. It should be distinguished from the letter "x" (U+0078) and the heavy multiplication sign (✖), which is bolder and is sometimes used decoratively. Using the correct multiplication sign improves both typographical quality and accessibility.

In CSS, use "\00D7" with the content property to insert this symbol via pseudo-elements. It is commonly used in close button implementations: .close::before { content: "\00D7"; }. Screen readers announce it as "times" or "multiplication sign."

Usage Examples

<!-- Using named entity -->
<p>This is the Multiplication Sign: &times;</p>

<!-- Using numeric code -->
<p>This is the Multiplication Sign: &#215;</p>

<!-- Using the character directly (UTF-8) -->
<p>This is the Multiplication Sign: ×</p>

<!-- In CSS -->
.icon::before {
  content: "\00D7";
}

FAQ

What is the HTML entity for Multiplication Sign?

The Multiplication Sign (×) can be inserted using the named entity &times;, the numeric code &#215;, or by pasting the character directly in a UTF-8 document.

How do I use × in CSS?

In CSS, use the content property with the value "\00D7". For example: content: "\00D7";

What is the Unicode code point for Multiplication Sign?

The Unicode code point for Multiplication Sign is U+00D7. This is the universal identifier for this character across all platforms and programming languages.

Try It in the HTML Entity Tool

Use our HTML Entity Encoder & Decoder to encode and decode HTML entities, convert between named, numeric, and hex formats, and explore the full entity reference table.

Open HTML Entity Tool →