HTML Entity for Up Tack (⊥)

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

What You'll Learn

How to display the Up Tack (⊥) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+22A5 (UP TACK) in the Mathematical Operators block (U+2200–U+22FF)—also called the perpendicular symbol or falsum (logical bottom).

Render it with ⊥, ⊥, or CSS escape \22A5. There is no named HTML entity. Do not confuse ⊥ with the Down Tack (⊤, top/tautology) or Up Tack Below (combining mark U+031D).

⚡ Quick Reference — Up Tack

Unicode U+22A5

Mathematical Operators

Hex Code ⊥

Hexadecimal reference

HTML Code ⊥

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22A5
Hex code       ⊥
HTML code      ⊥
Named entity   (none)
CSS code       \22A5
Official name  UP TACK
Also known as  Perpendicular symbol, falsum (bottom)
Related        U+22A4 = Down tack (⊤, top/tautology)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⊥ with hex, decimal, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22A5";
  }
 </style>
</head>
<body>
<p>Up Tack (hex): &#x22A5;</p>
<p>Up Tack (decimal): &#8869;</p>
<p id="point">Up Tack (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22A5 is universally supported in modern browsers when rendered with a font that includes Mathematical Operators:

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

👀 Live Preview

See the Up Tack (⊥) rendered live in different contexts:

Geometry ABCD (line AB is perpendicular to line CD)
Large glyph
Logic (falsum) P → ⊥   (if P then bottom/false)
vs Down Tack ⊥ up tack (bottom)   ⊤ down tack (top)
Numeric refs &#x22A5; &#8869; \22A5

🧠 How It Works

1

Hexadecimal Code

&#x22A5; uses the Unicode hexadecimal value 22A5 to display the Up Tack. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+22A5 in the Mathematical Operators block (U+2200–U+22FF). No named entity.

Use Cases

The Up Tack (⊥) commonly appears in:

📐 Math Expressions

Equations and formulas using the perpendicular symbol.

🧠 Logical Notation

Falsum (bottom) in formal logic and proof systems.

📚 Set Theory

Proofs, lattice theory, and theoretical mathematics.

📐 Geometry

Perpendicular lines and right-angle notation (e.g. ABCD).

📄 Technical Docs

Academic papers, research, and scholarly content.

💻 Computer Science

Formal methods, type theory, and programming language semantics.

🎓 Education

Textbooks, lecture notes, and interactive math tutorials.

💡 Best Practices

Do

  • Use &#x22A5; or &#8869; for math and logic markup
  • Pick one numeric style (hex or decimal) per project
  • Add aria-label for standalone symbols in accessibility contexts
  • Pair ⊥ with plain text on first use (e.g. “perpendicular” or “falsum”)
  • Test rendering across browsers and fonts that support math symbols

Don’t

  • Confuse ⊥ (up tack / bottom) with ⊤ (down tack / top)
  • Put CSS escape \22A5 in HTML text nodes
  • Assume every font renders ⊥ clearly at small sizes
  • Expect a named HTML entity for U+22A5—use numeric references
  • Use HTML entities in JavaScript (use \u22A5 instead)

Key Takeaways

1

Three ways to render ⊥ in HTML and CSS

&#x22A5; &#8869;
2

For CSS stylesheets, use the escape in the content property

\22A5
3

Unicode U+22A5 — UP TACK (perpendicular / falsum)

4

No named entity—use numeric references or CSS escape

5

Not the same as ⊤ (down tack / top / tautology)

❓ Frequently Asked Questions

Use &#x22A5; (hex), &#8869; (decimal), or \22A5 in CSS content. There is no named HTML entity. All three produce ⊥.
U+22A5 (UP TACK). Mathematical Operators block (U+2200–U+22FF). Hex 22A5, decimal 8869. Also called the perpendicular or falsum symbol.
In mathematical expressions, logical notations (falsum/bottom), set theory, geometry (perpendicular lines), formal methods, academic papers, and technical documentation.
HTML numeric references (&#8869; or &#x22A5;) go directly in markup. The CSS escape \22A5 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
HTML5 named entities cover common Latin and math characters, but not every Unicode symbol. For U+22A5 (⊥), use numeric references &#x22A5; or &#8869; in HTML, or CSS escape \22A5 in stylesheets.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, logic 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