Symbol For Start Of Heading

Shortcodes

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

Unicode
U+2401
HTML Code
␁
HEX Code
␁
CSS Code
\2401
JS/JSON
\u2401
Unix/C/PHP/JAVA
0x2401
URL-encode
%E2%90%81

Customize Symbol For Start Of Heading

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

  

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

Insert in HTML

1. Direct symbol:
<span>␁</span>
HTML Code:
<span>&#9217;</span>
HEX Code:
<span>&#x2401;</span>

Add with CSS

.symbol-for-start-of-heading::before {
  content: '\\2401';
}

Set it in JavaScript

document.querySelector('.symbol-for-start-of-heading').textContent = '␁';
copied