Spherical Angle

Shortcodes

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

Unicode
U+2222
HTML Code
∢
HEX Code
∢
CSS Code
\2222
JS/JSON
\u2222
Unix/C/PHP/JAVA
0x2222
URL-encode
%E2%88%A2

Customize Spherical Angle

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

  

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

Insert in HTML

1. Direct symbol:
<span>∢</span>
HTML Code:
<span>&#8738;</span>
HEX Code:
<span>&#x2222;</span>

Add with CSS

.spherical-angle::before {
  content: '\\2222';
}

Set it in JavaScript

document.querySelector('.spherical-angle').textContent = '∢';
copied