| Nom du symbole | Empty Set |
| Version Unicode | 1.1 |
| Unicode | U+2205 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2205 |
| Code hexadécimal | 0x2205 |
| Code HTML | ∅ |
| LaTeX | \emptyset |
| Symbole | ∅ |
| Encodage URL (pourcent UTF-8) | %E2%88%85 |
| Nom oral / lecteur d’écran | Empty Set |
| UTF-8 | E2 88 85 |
| UTF-16 | 2205 |
| UTF-32 | 00002205 |
1\documentclass{article}2\usepackage{pifont}3\emptyset 4\end{document}Vous pouvez saisir le symbole empty set sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8709 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "empty set", or use Unicode Hex Input with 2205.
Ctrl + Shift + U, type 2205, 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.empty-set::before { content: "\2205"; }1<span>∅</span>La représentation du symbole Empty Set dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2205' or String.fromCodePoint(0x2205) |
| Python | '\N{EMPTY SET}' or chr(8709) |
| Rust | '\u{2205}' |
| C / C++ | UTF-8 source or wchar_t with U+2205 |
| Go | string(rune(0x2205)) |
| Ruby | "\u2205" |