| Symbolname | End Of Proof |
| Unicode-Version | 1.1 |
| Unicode | U+220E |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code | \220E |
| Hexadezimalcode | 0x220E |
| HTML-Code | ∎ |
| LaTeX | \QED |
| Symbol | ∎ |
| URL-Kodierung (UTF-8-Prozent) | %E2%88%8E |
| Ansagename (Screenreader) | 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}Sie können das Symbol end of proof auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols End Of Proof in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |