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