Symbol For Start Of Text

Shortcodes

Copy useful codes for symbol for start of text ␂ to use in websites, apps, blogs, and docs.

Unicode
U+2402
HTML Code
␂
HEX Code
␂
CSS Code
\2402
JS/JSON
\u2402
Unix/C/PHP/JAVA
0x2402
URL-encode
%E2%90%82

Customize Symbol For Start Of Text

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

  

How to use Symbol For Start Of Text in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␂</span>
HTML Code:
<span>&#9218;</span>
HEX Code:
<span>&#x2402;</span>

Add with CSS

.symbol-for-start-of-text::before {
  content: '\\2402';
}

Set it in JavaScript

document.querySelector('.symbol-for-start-of-text').textContent = '␂';
copied