| Nom du symbole | Not An Element Of |
| Version Unicode | 1.1 |
| Unicode | U+2209 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2209 |
| Code hexadécimal | 0x2209 |
| Code HTML | ∉ |
| LaTeX | \notin |
| Symbole | ∉ |
| Encodage URL (pourcent UTF-8) | %E2%88%89 |
| Nom oral / lecteur d’écran | Not An Element Of |
| UTF-8 | E2 88 89 |
| UTF-16 | 2209 |
| UTF-32 | 00002209 |
1\documentclass{article}2\usepackage{pifont}3\notin 4\end{document}Vous pouvez saisir le symbole not an element of sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8713 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "not an element of", or use Unicode Hex Input with 2209.
Ctrl + Shift + U, type 2209, 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 math symbol support.
1span.not-an-element-of::before { content: "\2209"; }1<span>∉</span>La représentation du symbole Not An Element Of dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2209' or String.fromCodePoint(0x2209) |
| Python | '\N{NOT AN ELEMENT OF}' or chr(8713) |
| Rust | '\u{2209}' |
| C / C++ | UTF-8 source or wchar_t with U+2209 |
| Go | string(rune(0x2209)) |
| Ruby | "\u2209" |