Negation Symbol (NOT)

Unicode Name: NOT SIGN

¬

Shortcodes

Copy useful codes for negation symbol (not) ¬ to use in websites, apps, blogs, and docs.

Unicode
U+00AC
Alt Code
170
HTML Code
¬
HTML Entity
¬
HEX Code
¬
CSS Code
00AC
JS/JSON
\u00AC
Unix/C/PHP/JAVA
00AC
URL-encode
%C2%AC

Customize Negation Symbol (NOT)

Customize ¬, download it as SVG or PNG, or copy the generated HTML snippet.

¬
  

How to use Negation Symbol (NOT) in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>¬</span>
HTML Code:
<span>&#172;</span>
HTML Entity:
<span>&not;</span>
HEX Code:
<span>&#x00AC;</span>

Add with CSS

.negation::before {
  content: '00AC';
}

Set it in JavaScript

document.querySelector('.negation').textContent = '¬';
copied