| Symbol Name | Low Asterisk |
| Unicode Version | 3.2 |
| Unicode | U+204E |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \204E |
| Hex Code | 0x204E |
| HTML Code | ⁎ |
| LaTeX | \text{LOWASTERISK} |
| Symbol | ⁎ |
| URL encode (UTF-8 percent) | %E2%81%8E |
| Spoken / screen reader name | 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}You can type the low asterisk symbol on most modern devices with the help of following methods:
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>Low Asterisk symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |