| 記号名 | Asterisk |
| Unicodeバージョン | 1.1 |
| Unicode | U+002A |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \002A |
| 16進コード | 0x002A |
| HTMLコード | * |
| LaTeX | * |
| 記号 | * |
| URLエンコード(UTF-8パーセント) | %2A |
| 読み上げ名 / スクリーンリーダー | Asterisk |
| UTF-8 | 2A |
| UTF-16 | 002A |
| UTF-32 | 0000002A |
1\documentclass{article}2\usepackage{pifont}3*4\end{document}以下の方法でほとんどの最新デバイスでasterisk記号を入力できます:
Alt + 42 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "asterisk", or use Unicode Hex Input with 002A.
Ctrl + Shift + U, type 002a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.asterisk::before { content: "\002A"; }1<span>*</span>各プログラミング言語におけるAsterisk記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u002A' or String.fromCodePoint(42) |
| Python | '\N{ASTERISK}' or chr(42) |
| Rust | '\u{002A}' |
| C / C++ | UTF-8 source or wchar_t with U+002A |
| Go | string(rune(0x002A)) |
| Ruby | "\u{002A}" |