| Symbolname | Low Asterisk |
| Unicode-Version | 3.2 |
| Unicode | U+204E |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \204E |
| Hexadezimalcode | 0x204E |
| HTML-Code | ⁎ |
| LaTeX | \text{LOWASTERISK} |
| Symbol | ⁎ |
| URL-Kodierung (UTF-8-Prozent) | %E2%81%8E |
| Ansagename (Screenreader) | Low Asterisk |
| UTF-8 | E2 81 8E |
| UTF-16 | 204E |
| UTF-32 | 0000204E |
1\documentclass{article}2\usepackage{pifont}3\text{LOWASTERISK}4\end{document}Sie können das Symbol low asterisk auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8270 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "low asterisk", or use Unicode Hex Input with 204E.
Ctrl + Shift + U, type 204e, 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.low-asterisk::before { content: "\204E"; }1<span>⁎</span>Die Darstellung des Symbols Low Asterisk in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u204E' or String.fromCodePoint(8270) |
| Python | '\N{LOW ASTERISK}' or chr(8270) |
| Rust | '\u{204E}' |
| C / C++ | UTF-8 source or wchar_t with U+204E |
| Go | string(rune(0x204E)) |
| Ruby | "\u{204E}" |