HTML Entity for NOR (⊽)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22BD

What You'll Learn

How to display the NOR symbol (⊽) in HTML using named, hexadecimal, decimal, and CSS escape methods. The NOR operator (Peirce arrow / bar vee) represents logical NOR—true only when neither operand is true—and is essential for programming documentation, Boolean algebra, and digital logic content.

This character is U+22BD (NOR) in the Mathematical Operators block (U+2200–U+22FF). Render it with ⊽, ⊽, ⊽, or CSS escape \22BD.

⚡ Quick Reference — NOR Entity

Unicode U+22BD

Mathematical Operators

Hex Code ⊽

Hexadecimal reference

HTML Code ⊽

Decimal reference

Named Entity ⊽

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22BD
Hex code       ⊽
HTML code      ⊽
Named entity   ⊽
CSS code       \22BD
Meaning        Logical NOR (Peirce arrow)
Related        U+22BC = NAND (⊼)
               U+22BB = XOR (⊻, ⊻)
1

Complete HTML Example

This example demonstrates the NOR symbol (⊽) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22BD";
  }
 </style>
</head>
<body>
<p>NOR using Hexadecimal: &#x22BD;</p>
<p>NOR using HTML Code: &#8893;</p>
<p>NOR using Named Entity: &barvee;</p>
<p id="point">NOR using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The NOR symbol (⊽) is widely supported wherever Unicode Mathematical Operators render correctly:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the NOR symbol (⊽) in logic and Boolean contexts:

Inline text The result of PQ is true only when both operands are false.
Large glyph
In a formula PQ = ¬(PQ)
Logic family ⊼ NAND   ⊽ NOR   ⊻ XOR
Truth table 0 ⊽ 0 = 1 0 ⊽ 1 = 0 1 ⊽ 0 = 0 1 ⊽ 1 = 0

🧠 How It Works

1

Named Entity

&barvee; is the HTML named entity for U+22BD—the most readable choice when writing logic markup.

HTML markup
2

Hexadecimal Code

&#x22BD; uses the Unicode hexadecimal value 22BD. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8893; uses the decimal Unicode value 8893 to display the same character.

HTML markup
4

CSS Entity

\22BD is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+22BD in Mathematical Operators (U+2200–U+22FF).

Use Cases

The NOR symbol (⊽) is commonly used in:

📄 Programming docs

Describe NOR in prose next to code (e.g. AB).

📐 Boolean algebra

Truth tables, lecture notes, and logic simplification examples.

⚡ Logic gates

Digital electronics and hardware documentation for NOR gates.

🎓 CS education

Computer architecture and discrete math course materials.

📊 Reference guides

Unicode charts and HTML entity documentation for logic symbols.

📝 Technical writing

Formal specifications involving functional completeness and NOR logic.

💡 Best Practices

Do

  • Use &barvee; for readable logic markup
  • Distinguish NOR (⊽) from NAND (⊼) and XOR (⊻)
  • Pair ⊽ with plain-language description on first use
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⊽ (&barvee;) with ⊼ (NAND) or ⋏ (curly logical or)
  • Use padded Unicode notation like U+022BD—the correct value is U+22BD
  • Put CSS escape \22BD in HTML text nodes
  • Use \022BD in CSS—the correct escape is \22BD
  • Rely on the glyph alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ⊽

&#x22BD; &#8893; &barvee;
2

For CSS stylesheets, use the escape in the content property

\22BD
3

Unicode U+22BD — NOR (Peirce arrow / bar vee)

4

Mathematical Operators block (U+2200–U+22FF)

5

&barvee; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &barvee; (named), &#x22BD; (hex), &#8893; (decimal), or \22BD in CSS content. All produce ⊽.
U+22BD (NOR). Mathematical Operators block (U+2200–U+22FF). Hex 22BD, decimal 8893. Named entity: &barvee;.
In programming docs, Boolean algebra, logic gate references, digital electronics education, truth tables, and any technical content describing the NOR operation.
HTML references (&#8893;, &#x22BD;, or &barvee;) go directly in markup. The CSS escape \22BD is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &barvee; is the named HTML entity for U+22BD and is the most readable option in source markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — logic operators, math symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful