Section Sign

§

Shortcodes

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

Unicode
U+00A7
Alt Code
0167
HTML Code
§
HTML Entity
§
HEX Code
§
CSS Code
\00A7
JS/JSON
\u00A7
Unix/C/PHP/JAVA
0xA7
URL-encode
%C2%A7

Customize Section Sign

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

§
  

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

Insert in HTML

1. Direct symbol:
<span>§</span>
HTML Code:
<span>&#167;</span>
HTML Entity:
<span>&sect;</span>
HEX Code:
<span>&#x00A7;</span>

Add with CSS

.section-sign::before {
  content: '\\00A7';
}

Set it in JavaScript

document.querySelector('.section-sign').textContent = '§';
copied