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