| Nome del simbolo | Does Not Prove |
| Versione Unicode | 1.1 |
| Unicode | U+22AC |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \22AC |
| Codice esadecimale | 0x22AC |
| Codice HTML | ⊬ |
| LaTeX | \mathrm{⊬} |
| Simbolo | ⊬ |
| Codifica URL (percentuale UTF-8) | %E2%8A%AC |
| Nome parlato / screen reader | Does Not Prove |
| UTF-8 | E2 8A AC |
| UTF-16 | 22AC |
| UTF-32 | 000022AC |
1\documentclass{article}2\usepackage{pifont}3\mathrm{⊬}4\end{document}Puoi digitare il simbolo does not prove sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8876 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "does not prove", or use Unicode Hex Input with 22AC.
Ctrl + Shift + U, type 22ac, 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.does-not-prove::before { content: "\22AC"; }1<span>⊬</span>La rappresentazione del simbolo Does Not Prove nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u22AC' or String.fromCodePoint(0x22AC) |
| Python | '\N{DOES NOT PROVE}' or chr(8876) |
| Rust | '\u{22AC}' |
| C / C++ | UTF-8 source or wchar_t with U+22AC |
| Go | string(rune(0x22AC)) |
| Ruby | "\u22AC" |