| Nom du symbole | Does Not Force |
| Version Unicode | 1.1 |
| Unicode | U+22AE |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \22AE |
| Code hexadécimal | 0x22AE |
| Code HTML | ⊮ |
| LaTeX | \mathrm{⊮} |
| Symbole | ⊮ |
| Encodage URL (pourcent UTF-8) | %E2%8A%AE |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole does not force sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Does Not Force dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |