Negation Symbol (NOT)

Unicode Name: NOT SIGN

¬

Shortcodes

Copy and paste codes for Negation Symbol (NOT) ¬ to use in your websites, apps, blogs, and more.

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
copied

Customize Negation Symbol (NOT) Symbol

Customize ¬ symbol as you like and download Negation Symbol (NOT) as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
¬

                        
                    

How to type Negation Symbol (NOT) ¬ ?

Using Negation Symbol (NOT) Alt Code:

You can type the Negation Symbol (NOT) ¬ using your keyboard by using the Alt Code for Negation Symbol (NOT). Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 170 using the Numpad.
  3. Release the Alt key.

This will make the ¬ appear on your screen.

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

Insert ¬ Negation Symbol (NOT) using HTML

1. Copy-paste Negation Symbol (NOT) directly:
<span>¬</span>
2. HTML Decimal Code:
<span>&#172;</span>
3. HTML Entity:
<span>&not;</span>
4. Hexadecimal Code:
<span>&#x00AC;</span>
Preview: ¬

Add Negation Symbol (NOT) with CSS

.negation::before {
    content: '00AC';
}
Preview: Negation Symbol (NOT)

Negation Symbol (NOT) JavaScript Code

1. Direct Symbol:
document.querySelector('.negation').textContent = '¬';
2. Unicode Escape for ¬:
document.querySelector('.negation').textContent = '\u00AC';
Preview: ¬