| Symbolname | Not Sign |
| Unicode-Version | 1.1 |
| Unicode | U+00AC |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code | \00AC |
| Hexadezimalcode | 0x00AC |
| HTML-Code | ¬ |
| LaTeX | \neg |
| Symbol | ¬ |
| URL-Kodierung (UTF-8-Prozent) | %C2%AC |
| Ansagename (Screenreader) | Not Sign |
| UTF-8 | C2 AC |
| UTF-16 | 00AC |
| UTF-32 | 000000AC |
1\documentclass{article}2\usepackage{pifont}3\neg 4\end{document}Sie können das Symbol not sign auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Not Sign in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |