| Nome del simbolo | Empty Set |
| Versione Unicode | 1.1 |
| Unicode | U+2205 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2205 |
| Codice esadecimale | 0x2205 |
| Codice HTML | ∅ |
| LaTeX | \emptyset |
| Simbolo | ∅ |
| Codifica URL (percentuale UTF-8) | %E2%88%85 |
| Nome parlato / screen reader | Empty Set |
| UTF-8 | E2 88 85 |
| UTF-16 | 2205 |
| UTF-32 | 00002205 |
1\documentclass{article}2\usepackage{pifont}3\emptyset 4\end{document}Puoi digitare il simbolo empty set sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Empty Set nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |