| Nome del simbolo | End Of Proof |
| Versione Unicode | 1.1 |
| Unicode | U+220E |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \220E |
| Codice esadecimale | 0x220E |
| Codice HTML | ∎ |
| LaTeX | \QED |
| Simbolo | ∎ |
| Codifica URL (percentuale UTF-8) | %E2%88%8E |
| Nome parlato / screen reader | End Of Proof |
| UTF-8 | E2 88 8E |
| UTF-16 | 220E |
| UTF-32 | 0000220E |
1\documentclass{article}2\usepackage{pifont}3\QED 4\end{document}Puoi digitare il simbolo end of proof sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8718 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "end of proof", or use Unicode Hex Input with 220E.
Ctrl + Shift + U, type 220e, 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.end-of-proof::before { content: "\220E"; }1<span>∎</span>La rappresentazione del simbolo End Of Proof nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u220E' or String.fromCodePoint(0x220E) |
| Python | '\N{END OF PROOF}' or chr(8718) |
| Rust | '\u{220E}' |
| C / C++ | UTF-8 source or wchar_t with U+220E |
| Go | string(rune(0x220E)) |
| Ruby | "\u220E" |