HTML Entity for Section Sign (§)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00A7

What You'll Learn

How to display the Section Sign (§) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+00A7 (SECTION SIGN) in the Latin-1 Supplement block (U+0080–U+00FF)—widely used in legal documents, academic writing, and formal section references.

Render it with §, §, the named entity §, or CSS escape \00A7. Do not confuse § with U+00B6 (¶, paragraph sign / pilcrow, ¶)—a common mix-up in legal and academic markup.

⚡ Quick Reference — Section Sign

Unicode U+00A7

Latin-1 Supplement (U+0080–U+00FF)

Hex Code §

Hexadecimal reference

HTML Code §

Decimal reference

Named Entity §

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00A7
Hex code       §
HTML code      §
Named entity   §
CSS code       \00A7
Meaning        Section sign
Usage          e.g. § 5 for section 5
Not the same   U+00B6 = paragraph sign (¶, ¶)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing § using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\00A7";
  }
 </style>
</head>
<body>
<p>Section sign (hex): &#x00A7;</p>
<p>Section sign (decimal): &#167;</p>
<p>Section sign (named): &sect;</p>
<p id="point">Section sign (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Section Sign (§) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Section Sign (§) in legal and academic reference contexts:

Single symbol §
Section reference § 5 — General Provisions
Named entity &sect; renders as §
Not the same as Paragraph sign ¶ (&para;)  |  Dagger †
Numeric refs &#x00A7; &#167; &sect; \00A7

🧠 How It Works

1

Hexadecimal Code

&#x00A7; uses the Unicode hexadecimal value 00A7 to display the section sign.

HTML markup
2

Decimal HTML Code

&#167; uses the decimal Unicode value 167 for the same character.

HTML markup
3

Named Entity

&sect; is the standard HTML named entity for U+00A7—readable and widely supported in legal and academic markup.

HTML markup
4

CSS Entity

\00A7 is used in CSS stylesheets in the content property of pseudo-elements for decorative section markers.

CSS stylesheet
=

Section sign result

All four methods render §. Unicode U+00A7 in Latin-1 Supplement. Next: Semicolon.

Use Cases

The Section Sign (§) is commonly used in:

⚖ Legal documents

Statutes, contracts, and legal web content citing sections (e.g. § 12).

📚 Academic writing

Research papers, theses, and scholarly articles with section references.

📄 Formal documents

Official papers, policies, and structured content with numbered sections.

📋 Reference citations

Footnotes, bibliographies, and cross-references to document sections.

🌐 Law firm websites

Legal guides, compliance pages, and regulatory summaries.

📖 Technical manuals

Documentation and reference materials with section markers.

💡 Best Practices

Do

  • Use &sect; when readability matters in HTML source
  • Pair with a section number (e.g. &sect; 5) for clear references
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish section sign § from paragraph sign ¶
  • Pick one reference style per project for consistency

Don’t

  • Confuse § (section, &sect;) with ¶ (paragraph, &para;)
  • Use padded Unicode notation like U+000A7—the correct value is U+00A7
  • Use CSS escape \00A7 in HTML text nodes
  • Call § a “pilcrow”—that is U+00B6
  • Assume every font renders the section sign identically—test your typeface

Key Takeaways

1

Four ways to render U+00A7 in HTML and CSS

&#x00A7; &sect;
2

For CSS stylesheets, use \00A7 in the content property

3

Unicode U+00A7 — SECTION SIGN (§)

4

Not the paragraph sign ¶ — use &para; for U+00B6

5

Previous: Seagull Below (̼)   Next: Semicolon

❓ Frequently Asked Questions

Use &#x00A7; (hex), &#167; (decimal), &sect; (named), or \00A7 in CSS content. All four render §.
U+00A7 (SECTION SIGN). Latin-1 Supplement (U+0080–U+00FF). Hex 00A7, decimal 167, named &sect;.
No. § (U+00A7) is the section sign with entity &sect;. ¶ (U+00B6) is the paragraph sign / pilcrow with entity &para;. They look similar but are different characters.
For legal documents, academic writing, formal references, statutes, contracts, and any content that cites specific sections (e.g. § 5).
&sect; is part of the standard HTML named entity set for Latin-1 characters frequently used in legal and academic writing. It is more readable than numeric codes in source markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful