Capitulum

⸿

Shortcodes

Copy useful codes for capitulum symbol ⸿ to use in websites, apps, blogs, and docs.

Unicode
U+2E3F
HTML Code
⸿
HEX Code
⸿
CSS Code
\2E3F
JS/JSON
\u2E3F
Unix/C/PHP/JAVA
0x2E3F
URL-encode
%E2%B8%BF

Customize Capitulum

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

⸿
  

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

Insert in HTML

1. Direct symbol:
<span>⸿</span>
HTML Code:
<span>&#11839;</span>
HEX Code:
<span>&#x2E3F;</span>

Add with CSS

.capitulum::before {
  content: '\\2E3F';
}

Set it in JavaScript

document.querySelector('.capitulum').textContent = '⸿';
copied