| Symbol Name | Does Not Force |
| Unicode Version | 1.1 |
| Unicode | U+22AE |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \22AE |
| Hex Code | 0x22AE |
| HTML Code | ⊮ |
| LaTeX | \mathrm{⊮} |
| Symbol | ⊮ |
| URL encode (UTF-8 percent) | %E2%8A%AE |
| Spoken / screen reader name | 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}You can type the does not force symbol on most modern devices with the help of following methods:
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>Does Not Force symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |