| Symbol Name | Multiplication Sign |
| Unicode Version | 1.1 |
| Unicode | U+00D7 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \00D7 |
| Hex Code | 0x00D7 |
| HTML Code | × |
| LaTeX | \times |
| Symbol | × |
| URL encode (UTF-8 percent) | %C3%97 |
| Spoken / screen reader name | Multiplication Sign |
| UTF-8 | C3 97 |
| UTF-16 | 00D7 |
| UTF-32 | 000000D7 |
1\documentclass{article}2\usepackage{pifont}3\times4\end{document}You can type the multiplication sign symbol on most modern devices with the help of following methods:
Alt + 0215 on the numeric keypad, or insert via Character Map.
Option + Shift + 9 on many layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00d7, then Enter (layout-dependent).
Use the symbols keyboard or paste from this page.
Use extended symbols panels or paste from this page.
1span.times::before { content: "\00D7"; }1<span>×</span>Multiplication Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u00D7' or String.fromCodePoint(0x00D7) |
| Python | '\N{MULTIPLICATION SIGN}' or chr(215) |
| Rust | '\u{00D7}' |
| C / C++ | UTF-8 source or wchar_t with U+00D7 |
| Go | string(rune(0x00D7)) |
| Ruby | "\u00D7" |