Top Half Section Sign

Shortcodes

Copy useful codes for top half section sign ⸹ to use in websites, apps, blogs, and docs.

Unicode
U+2E39
HTML Code
⸹
HEX Code
⸹
CSS Code
\2E39
JS/JSON
\u2E39
Unix/C/PHP/JAVA
0x2E39
URL-encode
%E2%B8%B9

Customize Top Half Section Sign

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

  

How to use Top Half Section Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸹</span>
HTML Code:
<span>&#11833;</span>
HEX Code:
<span>&#x2E39;</span>

Add with CSS

.top-half-section-sign::before {
  content: '\\2E39';
}

Set it in JavaScript

document.querySelector('.top-half-section-sign').textContent = '⸹';
copied