HTML Entity for Multiplication Sign (×)

What You'll Learn
How to display the multiplication sign (×) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+00D7 (MULTIPLICATION SIGN) in the Latin-1 Supplement block—the standard times operator for math, products, and dimensions (e.g. “3 × 4 = 12” or “1920 × 1080”).
Render it with the named entity ×, ×, ×, or CSS escape \00D7. Do not confuse × with the letter x (U+0078) or with Multiplication X (✕, U+2715)—a different cross-shaped symbol.
⚡ Quick Reference — Multiplication Sign
U+00D7Latin-1 Supplement
×Hexadecimal reference
×Decimal reference
×Times / multiplication (most readable)
Name Value
──────────── ──────────
Unicode U+00D7
Hex code ×
HTML code ×
Named entity ×
CSS code \00D7
Meaning Multiplication sign (×)
Related U+0078 = letter x (x)
U+2715 = multiplication x (✕)Complete HTML Example
This example demonstrates the multiplication sign (×) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00D7";
}
</style>
</head>
<body>
<p>Multiplication using Hexadecimal: ×</p>
<p>Multiplication using HTML Code: ×</p>
<p>Multiplication using Named Entity: ×</p>
<p id="point">Multiplication using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+00D7 is universally supported in modern browsers and has been part of HTML entities since early standards:
👀 Live Preview
See the multiplication sign (×) in common contexts:
🧠 How It Works
Named Entity
× is the HTML named entity for the multiplication sign—widely used and easy to read in source code.
Hexadecimal Code
× uses the Unicode hexadecimal value D7. The x prefix indicates hexadecimal format.
Decimal HTML Code
× uses the decimal Unicode value 215 to display the same character.
CSS Entity
\00D7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ×. Unicode U+00D7 in Latin-1 Supplement. For the alternate cross symbol, see Multiplication X (✕).
Use Cases
The multiplication sign (×) is commonly used in:
Equations and product notation (a × b, 3 × 4).
Screen resolutions, image sizes, and layout specs (1920 × 1080).
School and university math content, quizzes, and tutorials.
Scientific papers, lab notes, and technical documentation.
Quantity selectors and product dimension labels.
HTML entity tutorials and Unicode symbol documentation.
💡 Best Practices
Do
- Use
×for readable multiplication in HTML - Use × for dimensions and math—not the letter x
- Add spaces around × in prose for readability (3 × 4)
- Add
aria-labelwhen the symbol stands alone in UI - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Substitute lowercase
xwhen you mean the multiplication sign - Confuse × (U+00D7) with ✕ (Multiplication X, U+2715)
- Use ASCII asterisk
*in formal math typography when × is expected - Put CSS escape
\00D7in HTML text nodes - Rely on the symbol alone without accessible description in interactive UI
Key Takeaways
Three HTML references plus CSS all render ×
× × ×For CSS stylesheets, use the escape in the content property
\00D7Unicode U+00D7 — MULTIPLICATION SIGN
× is the standard named entity
Not the same as letter x (U+0078) or ✕ (U+2715)
❓ Frequently Asked Questions
× (named), × (hex), × (decimal), or \00D7 in CSS content. All produce ×.U+00D7 (MULTIPLICATION SIGN). Latin-1 Supplement block. Hex D7, decimal 215. Named entity: ×.U+00D7, ×) is the standard multiplication sign. ✕ (U+2715) is Multiplication X—a different cross-shaped symbol in Dingbats, often used for close buttons.×, ×, or ×) go directly in markup. The CSS escape \00D7 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, and more.
8 people found this page helpful
