HTML Entity for NOR (⊽)

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
U+22BDMathematical Operators
⊽Hexadecimal reference
⊽Decimal reference
⊽Most readable option
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 (⊻, ⊻)Complete HTML Example
This example demonstrates the NOR symbol (⊽) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22BD";
}
</style>
</head>
<body>
<p>NOR using Hexadecimal: ⊽</p>
<p>NOR using HTML Code: ⊽</p>
<p>NOR using Named Entity: ⊽</p>
<p id="point">NOR using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The NOR symbol (⊽) is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See the NOR symbol (⊽) in logic and Boolean contexts:
🧠 How It Works
Named Entity
⊽ is the HTML named entity for U+22BD—the most readable choice when writing logic markup.
Hexadecimal Code
⊽ uses the Unicode hexadecimal value 22BD. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊽ uses the decimal Unicode value 8893 to display the same character.
CSS Entity
\22BD is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Describe NOR in prose next to code (e.g. A ⊽ B).
Truth tables, lecture notes, and logic simplification examples.
Digital electronics and hardware documentation for NOR gates.
Computer architecture and discrete math course materials.
Unicode charts and HTML entity documentation for logic symbols.
Formal specifications involving functional completeness and NOR logic.
💡 Best Practices
Do
- Use
⊽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 ⊽ (
⊽) with ⊼ (NAND) or ⋏ (curly logical or) - Use padded Unicode notation like U+022BD—the correct value is
U+22BD - Put CSS escape
\22BDin HTML text nodes - Use
\022BDin CSS—the correct escape is\22BD - Rely on the glyph alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ⊽
⊽ ⊽ ⊽For CSS stylesheets, use the escape in the content property
\22BDUnicode U+22BD — NOR (Peirce arrow / bar vee)
Mathematical Operators block (U+2200–U+22FF)
⊽ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
⊽ (named), ⊽ (hex), ⊽ (decimal), or \22BD in CSS content. All produce ⊽.U+22BD (NOR). Mathematical Operators block (U+2200–U+22FF). Hex 22BD, decimal 8893. Named entity: ⊽.⊽, ⊽, or ⊽) 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.⊽ 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.
8 people found this page helpful
