| Symbol Name | Outlined Black Star |
| Unicode Version | 1.1 |
| Unicode | U+272D |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \272D |
| Hex Code | 0x272D |
| HTML Code | ✭ |
| LaTeX | \text{OUTLINEDBLACKSTAR} |
| Symbol | ✭ |
| URL encode (UTF-8 percent) | %E2%9C%AD |
| Spoken / screen reader name | Outlined Black Star |
| UTF-8 | E2 9C AD |
| UTF-16 | 272D |
| UTF-32 | 0000272D |
1\documentclass{article}2\usepackage{pifont}3\text{OUTLINEDBLACKSTAR}4\end{document}You can type the outlined black star symbol on most modern devices with the help of following methods:
Alt + 10029 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "outlined black star", or use Unicode Hex Input with 272D.
Ctrl + Shift + U, type 272d, 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.outlined-black-star::before { content: "\272D"; }1<span>✭</span>Outlined Black Star symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u272D' or String.fromCodePoint(10029) |
| Python | '\N{OUTLINED BLACK STAR}' or chr(10029) |
| Rust | '\u{272D}' |
| C / C++ | UTF-8 source or wchar_t with U+272D |
| Go | string(rune(0x272D)) |
| Ruby | "\u{272D}" |