| Symbolname | Small Asterisk |
| Unicode-Version | 1.1 |
| Unicode | U+FE61 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \FE61 |
| Hexadezimalcode | 0xFE61 |
| HTML-Code | ﹡ |
| LaTeX | \text{SMALLASTERISK} |
| Symbol | ﹡ |
| URL-Kodierung (UTF-8-Prozent) | %EF%B9%A1 |
| Ansagename (Screenreader) | 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}Sie können das Symbol small asterisk auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Small Asterisk in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |