Arc

Shortcodes

Copy useful codes for arc symbol ⌒ to use in websites, apps, blogs, and docs.

Unicode
U+2312
HTML Code
⌒
HEX Code
⌒
CSS Code
\2312
JS/JSON
\u2312
Unix/C/PHP/JAVA
0x2312
URL-encode
%E2%8C%92

Customize Arc

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌒</span>
HTML Code:
<span>&#8978;</span>
HEX Code:
<span>&#x2312;</span>

Add with CSS

.arc::before {
  content: '\\2312';
}

Set it in JavaScript

document.querySelector('.arc').textContent = '⌒';
copied