HTML Entity for Angle (∠)

What You'll Learn
How to display the angle symbol (∠, U+2220) in HTML. Unicode calls this character ANGLE; it is the usual geometric “angle at a point” mark (for example in expressions like ∠ABC). It lives in the Mathematical Operators block.
You can write it as the named entity ∠ (omit the zero-width space when typing: ampersand + ang + semicolon), as ∠ or ∠, or via CSS content with \2220 or \022220. Do not confuse it with angle brackets (<, >) or quotation ornaments; those are different code points.
⚡ Quick Reference — Angle (∠)
U+2220Mathematical Operators
∠Hexadecimal reference
∠Decimal reference
∠Remove U+200B when typing; shown only so the table does not collapse the reference.
Name Value
──────────── ──────────
Unicode U+2220
Hex code ∠
HTML code ∠
Named entity ∠
CSS code \2220Complete HTML Example
This example shows U+2220 using hexadecimal, decimal, the named ang entity, and a CSS content escape. In your own file, write the named form without the zero-width space used in this table.
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2220";
}
</style>
</head>
<body>
<p>Angle using Hexa Decimal: ∠</p>
<p>Angle using HTML Code: ∠</p>
<p>Angle using HTML Entity: ∠</p>
<p id="point">Angle using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Named and numeric references for U+2220 work in all modern browsers. The glyph depends on fonts that include Mathematical Operators:
👀 Live Preview
See U+2220 in short math-style strings (font-dependent):
∠ or ∠ in UTF-8 text.🧠 How It Works
Named entity
The short name ang (with leading ampersand and semicolon) resolves to U+2220. It is easy to read in hand-authored math HTML.
Numeric references
∠ (decimal) and ∠ (hex) are equivalent for the angle symbol.
CSS escape
\2220 (or \022220 with a following space if the next character is hex) in content on ::before / ::after emits U+2220 from a stylesheet.
Same code point
All paths expose U+2220 (Mathematical Operators). Official name: ANGLE. Prefer named or numeric references in markup; use CSS escapes only in stylesheets.
Use Cases
The angle symbol (U+2220) fits these kinds of content:
Angle labels in proofs, exercises, and static diagrams alongside plain text.
K–12 and university pages that introduce notation without full MathML.
Engineering and CAD copy where a single Unicode glyph is enough.
SVG or figure captions that name angles next to illustrations.
UI strings for geometry tools and graphing helpers.
Pair symbols with readable text (“angle ABC”) so meaning survives font fallback.
Reference pages for Mathematical Operators.
💡 Best Practices
Do
- Prefer the named
angentity (ampersand + ang + semicolon, no separator) or numeric refs for portable math snippets - Use a math-friendly font stack when notation must match textbooks
- Keep labels like ∠ABC near the figure they describe
- Use
\2220only inside CSScontent, not raw in HTML text - Validate pages; bad nesting around math can still confuse assistive tech
Don’t
- Confuse U+2220 with less-than, greater-than, or bracket ornaments
- Rely on a casual body font if the angle glyph must match examination-board charts
- Paste CSS escapes into HTML markup (wrong layer)
- Use images for every tiny symbol when HTML entities would stay crisp and selectable
- Forget context for screen readers when the symbol carries the whole meaning
Key Takeaways
Named + numeric ways to write U+2220
∠ ∠ ∠CSS content escape
\2220Unicode U+2220 — ANGLE
Mathematical Operators — geometry and technical notation
Not the same as angle brackets; pick the right code point for markup vs math
❓ Frequently Asked Questions
ang reference (ampersand + ang + semicolon), ∠, or ∠ in text. For CSS-only generated text, \2220 in content works.U+2220 (decimal 8736, hex 2220). Official name: ANGLE. Block: Mathematical Operators.< and > (different code points). U+2220 is the mathematical angle glyph.content and other property values.ang with the usual leading ampersand and trailing semicolon.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
