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