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