| Symboolnaam | End Of Proof |
| Unicode-versie | 1.1 |
| Unicode | U+220E |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \220E |
| Hexadecimale code | 0x220E |
| HTML-code | ∎ |
| LaTeX | \QED |
| Symbool | ∎ |
| URL-codering (UTF-8 procent) | %E2%88%8E |
| Uitgesproken naam / schermlezer | 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}Je kunt het end of proof-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het End Of Proof-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |