| Symbol Name | Observer Eye Symbol |
| Unicode Version | 10.0 |
| Unicode | U+23FF |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \23FF |
| Hex Code | 0x23FF |
| HTML Code | ⏿ |
| LaTeX | \text{OBSERVEREYESYMBOL} |
| Symbol | ⏿ |
| URL encode (UTF-8 percent) | %E2%8F%BF |
| Spoken / screen reader name | Observer Eye Symbol |
| UTF-8 | E2 8F BF |
| UTF-16 | 23FF |
| UTF-32 | 000023FF |
1\documentclass{article}2\usepackage{pifont}3\text{OBSERVEREYESYMBOL}4\end{document}You can type the observer eye symbol on most modern devices with the help of following methods:
Alt + 9215 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "observer eye symbol", or use Unicode Hex Input with 23FF.
Ctrl + Shift + U, type 23ff, 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 power and UI symbol support.
1span.observer-eye-symbol::before { content: "\23FF"; }1<span>⏿</span>Observer Eye symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u23FF' or String.fromCodePoint(9215) |
| Python | '\N{OBSERVER EYE SYMBOL}' or chr(9215) |
| Rust | '\u{23FF}' |
| C / C++ | UTF-8 source or wchar_t with U+23FF |
| Go | string(rune(0x23FF)) |
| Ruby | "\u{23FF}" |