| Nom du symbole | Observer Eye Symbol |
| Version Unicode | 10.0 |
| Unicode | U+23FF |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \23FF |
| Code hexadécimal | 0x23FF |
| Code HTML | ⏿ |
| LaTeX | \text{OBSERVEREYESYMBOL} |
| Symbole | ⏿ |
| Encodage URL (pourcent UTF-8) | %E2%8F%BF |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole observer eye sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Observer Eye dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |