HTML Entity for Right Angle (∟)

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

What You'll Learn

How to display the Right Angle symbol (∟) in HTML using numeric references, the named entity, and CSS escapes. This character is U+221F (RIGHT ANGLE) in the Mathematical Operators block (U+2200–U+22FF)—used in geometry, mathematical notation, and academic documentation to denote a 90° angle.

You can use the named entity ∟, hex ∟, decimal ∟, or CSS \221F. Do not confuse ∟ with U+2220 (∠, general angle) or U+22BE (⊾, right angle with arc).

⚡ Quick Reference — Right Angle

Unicode U+221F

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

Hex Code ∟

Hexadecimal reference

HTML Code ∟

Decimal reference

Named Entity ∟

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+221F
Hex code       ∟
HTML code      ∟
Named entity   ∟
CSS code       \221F
Meaning        Right angle (90°)
Related        U+2220 = angle (∠)
               U+2221 = measured angle (∡)
               U+22BE = right angle with arc (⊾)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ∟ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\221F";
  }
 </style>
</head>
<body>
<p>Right angle (hex): &#x221F;</p>
<p>Right angle (decimal): &#8735;</p>
<p>Right angle (named): &angrt;</p>
<p id="point">Right angle (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+221F is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Angle symbol (∟) in geometric contexts:

Single symbol
Geometry ∟ = 90° right angle
Compare angles Angle ∠   Measured ∡   Right ∟
Named entity &angrt;
Numeric refs &#x221F; &#8735; \221F

🧠 How It Works

1

Hexadecimal Code

&#x221F; uses Unicode hex 221F to display the right angle symbol.

HTML markup
2

Decimal HTML Code

&#8735; is the decimal equivalent (8735) for the same character.

HTML markup
3

Named HTML Entity

&angrt; is the standard named entity for U+221F—readable in HTML source.

HTML markup
4

CSS Entity

\221F is the CSS escape for U+221F, used in pseudo-element content.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+221F in Mathematical Operators. Next: Right Angle Arc.

Use Cases

The Right Angle symbol (∟) is commonly used in:

🔢 Geometry

Diagrams, proofs, and textbooks marking 90° corners.

📝 Mathematics

Formal expressions and notation involving perpendicular lines.

📖 Academic writing

Research papers, math journals, and scholarly publications.

💬 Engineering

Technical drawings, specifications, and CAD documentation.

📋 Unicode references

Character pickers, entity documentation, and math symbol guides.

♿ Accessibility

Pair ∟ with descriptive text or MathML when used as a meaningful symbol.

💡 Best Practices

Do

  • Use &angrt; for readable right angle markup
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ∟ for right angles—not general angle ∠
  • Link to Measured Angle and Angle when documenting related symbols
  • Pick one reference style per project for consistency

Don’t

  • Confuse ∟ with angle ∠ or measured angle ∡
  • Use padded Unicode notation like U+0221F—the correct value is U+221F
  • Use CSS escape \221F in HTML text nodes
  • Substitute an L-shaped ASCII character when ∟ is required formally
  • Assume every font renders Mathematical Operators identically

Key Takeaways

1

Four ways to render U+221F in HTML and CSS

&angrt; &#8735;
2

For CSS stylesheets, use \221F in the content property

3

Unicode U+221F — RIGHT ANGLE (∟)

4

Distinct from angle ∠, measured angle ∡, and right angle arc ⊾

5

Previous: Rial Sign (﷼)   Next: Right Angle Arc

❓ Frequently Asked Questions

Use &angrt; (named entity), &#x221F; (hex), &#8735; (decimal), or \221F in CSS content. All four render ∟.
U+221F (RIGHT ANGLE). Mathematical Operators block (U+2200–U+22FF). Hex 221F, decimal 8735. Denotes a 90° angle.
No. ∟ (U+221F) is the right angle symbol. ∠ (U+2220) is the general angle symbol. They are different Unicode characters.
For geometry, mathematical notation, academic documentation, technical writing, geometric proofs, and engineering diagrams involving right angles.
&angrt; is the standard named entity for U+221F and is the most readable option in HTML source.

Explore More HTML Entities!

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