| Symboolnaam | Not Sign |
| Unicode-versie | 1.1 |
| Unicode | U+00AC |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \00AC |
| Hexadecimale code | 0x00AC |
| HTML-code | ¬ |
| LaTeX | \neg |
| Symbool | ¬ |
| URL-codering (UTF-8 procent) | %C2%AC |
| Uitgesproken naam / schermlezer | Not Sign |
| UTF-8 | C2 AC |
| UTF-16 | 00AC |
| UTF-32 | 000000AC |
1\documentclass{article}2\usepackage{pifont}3\neg 4\end{document}Je kunt het not sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 172 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "not sign", or use Unicode Hex Input with 00AC.
Ctrl + Shift + U, type 00ac, 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.not-sign::before { content: "\00AC"; }1<span>¬</span>De weergave van het Not Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u00AC' or String.fromCodePoint(0x00AC) |
| Python | '\N{NOT SIGN}' or chr(172) |
| Rust | '\u{00AC}' |
| C / C++ | UTF-8 source or wchar_t with U+00AC |
| Go | string(rune(0x00AC)) |
| Ruby | "\u00AC" |