| 記号名 | Not Sign |
| Unicodeバージョン | 1.1 |
| Unicode | U+00AC |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \00AC |
| 16進コード | 0x00AC |
| HTMLコード | ¬ |
| LaTeX | \neg |
| 記号 | ¬ |
| URLエンコード(UTF-8パーセント) | %C2%AC |
| 読み上げ名 / スクリーンリーダー | Not Sign |
| UTF-8 | C2 AC |
| UTF-16 | 00AC |
| UTF-32 | 000000AC |
1\documentclass{article}2\usepackage{pifont}3\neg 4\end{document}以下の方法でほとんどの最新デバイスでnot sign記号を入力できます:
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>各プログラミング言語におけるNot Sign記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |