| 記号名 | Multiplication Sign |
| Unicodeバージョン | 1.1 |
| Unicode | U+00D7 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \00D7 |
| 16進コード | 0x00D7 |
| HTMLコード | × |
| LaTeX | \times |
| 記号 | × |
| URLエンコード(UTF-8パーセント) | %C3%97 |
| 読み上げ名 / スクリーンリーダー | Multiplication Sign |
| UTF-8 | C3 97 |
| UTF-16 | 00D7 |
| UTF-32 | 000000D7 |
1\documentclass{article}2\usepackage{pifont}3\times4\end{document}以下の方法でほとんどの最新デバイスでmultiplication sign記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |