Angle (∠) is Unicode U+2220 in the Mathematical Operators block. It is the standard geometry glyph for an angle — used in labels like ∠ABC or ∠θ. HTML provides the named entity ∠.
Remember
Character ∠
Unicode U+2220
Hex entity ∠
Decimal ∠
Named entity ∠
CSS escape \2220
Not the same < (U+003C) · ∡ · ∢ · ∟
All of these produce the same glyph: ∠. Prefer ∠ in hand-written HTML; type ∠ in UTF-8 when you can; use numeric or CSS forms for generated content.
Angle using Hex Code: ∠
Angle using HTML Code: ∠
Angle using Named Entity: ∠
Angle using CSS Entity: ∠
Typed directly: ∠
How It Works
1. Hex:U+2220 → ∠ in HTML. The browser turns it into ∠.
2. Decimal: same code point as 8736 → ∠. Same result as hex.
3. Named:∠ is the standard HTML name for U+2220 — clear in source.
4. CSS: use \2220 in content (not an HTML entity). #point::after appends that ∠ after the paragraph text.
5. Typed ∠: fine in UTF-8 source. All five lines show the same glyph.
Pitfalls & Tips
Common mistakes when working with the angle (∠) entity.
<
Not a less-than sign
< is markup/comparison (U+003C). For geometry use ∠.
Family
Pick the right angle glyph
∠ ≠ ∡ ≠ ∢ ≠ ∟. Match the symbol your textbook or standard uses.
CSS vs HTML
Do not mix escapes
\2220 belongs in CSS. ∠ / ∠ belong in HTML.
Fonts
Use math-capable fonts
Some UI fonts omit Mathematical Operators. Prefer fonts with solid math coverage.
Named
Prefer ∠
Named form is easiest to read; numeric forms are fine for generators.
Semicolon
End references
Always finish with ; — write ∠, not &ang.
Compatibility
Browser Support
Angle (U+2220) and its entity forms (∠, ∠, ∠, CSS \\2220) are supported in all mainstream browsers. Glyph availability depends on font support for Mathematical Operators.
✓ Universal support
Angle (∠)
Type ∠, or encode with named, hex, decimal, or CSS escape — same glyph everywhere encoding is supported.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+2220 / entitiesFull support
Bottom line: Prefer ∠ or a typed ∠ for normal text. Use numeric forms when generating markup, and \\2220 only inside CSS content.
Use ∠ (hex), ∠ (decimal), ∠ (named), or the CSS escape \2220 in the content property. All render ∠. You can also paste ∠ directly if your file is UTF-8.
U+2220 (hex 2220, decimal 8736). Unicode names it Angle. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. ∠ maps to U+2220. Prefer it in hand-written HTML; numeric forms are useful in generated markup or XML contexts.
Use ∠ for a general geometric angle. Use measured angle (∡, U+2221) or right angle (∟, U+221F) when your notation standard calls for those specific symbols.
HTML entities (∠, ∠, or ∠) go in markup. The CSS escape \2220 is used in stylesheets (usually in the content property of ::before/::after). Both render ∠.
No. < is U+003C (markup and comparison). ∠ is U+2220, a mathematical angle glyph. Do not use < as a substitute for ∠.
🤔
Did you know?
Angle is Unicode U+2220 (decimal 8736) in the Mathematical Operators block. HTML provides the named entity ∠. It is the common ∠ used in geometry — not the same as measured angle (∡), spherical angle (∢), or angle brackets (< >).