| Nombre del símbolo | Does Not Force |
| Versión Unicode | 1.1 |
| Unicode | U+22AE |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \22AE |
| Código hexadecimal | 0x22AE |
| Código HTML | ⊮ |
| LaTeX | \mathrm{⊮} |
| Símbolo | ⊮ |
| Codificación URL (porcentaje UTF-8) | %E2%8A%AE |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo does not force en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Does Not Force en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |