HTML Entity for Neuter (⚲)

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

What You'll Learn

How to display the Neuter symbol (⚲) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+26B2 (NEUTER) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for gender-neutral designation, biological classification, and grammatical neuter references.

Render it with ⚲, ⚲, or CSS \26B2. There is no named HTML entity. Related gender symbols include Female Sign (♀, ♀) and Male Sign (♂, ♂).

⚡ Quick Reference — Neuter Symbol

Unicode U+26B2

Miscellaneous Symbols

Hex Code ⚲

Hexadecimal reference

HTML Code ⚲

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26B2
Hex code       ⚲
HTML code      ⚲
Named entity   (none)
CSS code       \26B2
Meaning        Neuter (gender / grammatical)
Glyph          ⚲
Related        U+2640 = female (♀, ♀)
               U+2642 = male (♂, ♂)
               U+26A2 = alternate neuter (⚢)
1

Complete HTML Example

This example shows the Neuter symbol (U+26B2) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\26B2";
  }
 </style>
</head>
<body>
<p>Neuter using Hexadecimal: &#x26B2;</p>
<p>Neuter using Decimal: &#9906;</p>
<p id="point">Neuter using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Neuter symbol (⚲) is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Neuter symbol (⚲) in gender and reference contexts:

Gender options ♀ Female   ♂ Male   ⚲ Neuter
Large glyph
Form label Gender: ⚲ Neuter / Non-binary
Named entity (none) — use numeric codes
Numeric refs &#x26B2; &#9906; \26B2

🧠 How It Works

1

Hexadecimal Code

&#x26B2; uses the Unicode hexadecimal value 26B2 to display the Neuter symbol (⚲).

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\26B2 is used in CSS stylesheets in the content property, often on ::after following a base character in markup.

CSS stylesheet
4

No Named Entity

U+26B2 has no standard &...; named form. Use hex, decimal, or CSS escape only.

HTML markup
=

Same visual result

All three methods produce . Unicode U+26B2 is in Miscellaneous Symbols. Related: Female Sign (♀), Male Sign (♂).

Use Cases

The Neuter symbol (⚲) is commonly used in:

👤 Forms & profiles

Gender selection options alongside female and male symbols.

🧬 Biology

Scientific and medical content for biological classification.

📚 Grammar

Linguistics and language-learning material for neuter gender.

🎨 Inclusive design

Accessible UI that represents diverse gender options.

📊 Demographics

Surveys, census forms, and statistical reporting.

🌐 Reference guides

Unicode charts and HTML entity documentation for gender symbols.

💡 Best Practices

Do

  • Use &#x26B2; or &#9906; in HTML content
  • Pair ⚲ with clear text labels (e.g. “Neuter”) for accessibility
  • Use fonts that support Miscellaneous Symbols (U+26B2)
  • Set <meta charset="utf-8">
  • Offer text alternatives, not symbols alone, in critical UI

Don’t

  • Expect a named HTML entity for U+26B2
  • Confuse ⚲ (U+26B2) with ⚢ (U+26A2)—a different neuter glyph
  • Use padded Unicode notation like U+026B2—the correct value is U+26B2
  • Use \026B2 in CSS—the correct escape is \26B2
  • Rely on the glyph alone without accessible description

Key Takeaways

1

Two HTML numeric references plus CSS for U+26B2

&#x26B2; &#9906;
2

For CSS, use \26B2 in the content property

3

Unicode U+26B2 — NEUTER

4

Miscellaneous Symbols block; glyph

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x26B2; (hex), &#9906; (decimal), or \26B2 in CSS content. There is no named entity. All methods render ⚲ when the font supports U+26B2.
U+26B2 (NEUTER). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26B2, decimal 9906.
In forms and profiles for gender options, biological and scientific content, inclusive design, grammatical neuter references, demographics, and any content requiring a neuter designation symbol.
HTML references (&#9906; or &#x26B2;) go in markup. The CSS escape \26B2 is used in stylesheets, typically on ::before or ::after. Both render ⚲.
Named entities cover common characters like &female; and &male;; Miscellaneous Symbols such as U+26B2 use numeric hex or decimal codes or CSS escapes.

Explore More HTML Entities!

Discover 1500+ HTML character references — gender symbols, math, science, 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