Angle

Shortcodes

Copy useful codes for angle symbol ∠ to use in websites, apps, blogs, and docs.

Unicode
U+2220
HTML Code
∠
HEX Code
∠
CSS Code
\2220
JS/JSON
\u2220
Unix/C/PHP/JAVA
0x2220
URL-encode
%E2%88%A0

Customize Angle

Customize ∠, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Angle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∠</span>
HTML Code:
<span>&#8736;</span>
HEX Code:
<span>&#x2220;</span>

Add with CSS

.angle::before {
  content: '\\2220';
}

Set it in JavaScript

document.querySelector('.angle').textContent = '∠';
copied