HTML Entity for Vertical Male Stroke Sign (⚨)

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

What You'll Learn

How to display the Vertical Male Stroke Sign (⚨) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+26A8 (VERTICAL MALE WITH STROKE SIGN) in the Miscellaneous Symbols block—a specialized symbolic character used in gender-related notation and design contexts.

Render it with ⚨, ⚨, or CSS escape \26A8. There is no named HTML entity. Do not confuse ⚨ with the standard male sign ♂ (♂) or police car light 🚨 (U+1F6A8).

⚡ Quick Reference — Vertical Male Stroke Sign Entity

Unicode U+26A8

Miscellaneous Symbols

Hex Code ⚨

Hexadecimal reference

HTML Code ⚨

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26A8
Hex code       ⚨
HTML code      ⚨
Named entity   (none)
CSS code       \26A8
Meaning        Vertical male with stroke sign
Related        U+2642 = ♂ (male sign, ♂)
               U+2640 = ♀ (female sign, ♀)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing the Vertical Male Stroke Sign (⚨) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\26A8";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x26A8;</p>
<p>Symbol (decimal): &#9896;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Vertical Male Stroke Sign (⚨) is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:

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

👀 Live Preview

See the Vertical Male Stroke Sign rendered live:

Inline textSymbol: ⚨ (vertical male with stroke)
Large glyph
Related symbols♂ male  |  ♀ female  |  ⚨ this symbol
Not the same as🚨 (U+1F6A8, police car light emoji)
Numeric refs&#x26A8; &#9896; \26A8

🧠 How It Works

1

Hexadecimal Code

&#x26A8; uses the Unicode hexadecimal value 26A8 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9896; uses the decimal Unicode value 9896 to display the same character. A common method for Miscellaneous Symbols.

HTML markup
3

CSS Entity

\26A8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+26A8 sits in Miscellaneous Symbols. Not the same as &male; (♂) or U+1F6A8 (🚨).

Use Cases

The Vertical Male Stroke Sign (⚨) is commonly used in:

⚗ Gender notation

Symbolic gender-related content and specialized character sets.

📋 Specialized symbols

Notation systems and symbolic logic referencing this character.

🎨 Design elements

Decorative and visual design using Miscellaneous Symbols.

📄 Documentation

Unicode references and character charts for U+26A8.

🖥 Web & app UI

Interfaces displaying specialized symbolic characters.

🌐 International content

Multilingual content with gender or symbolic indicators.

⚙ Programmatic HTML

When building HTML from data, &#9896; or &#x26A8; guarantees correct output.

💡 Best Practices

Do

  • Pair ⚨ with accessible text or aria-label when standalone
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Miscellaneous Symbols
  • Distinguish ⚨ from ♂ (&male;)

Don’t

  • Confuse ⚨ (U+26A8) with 🚨 (police car light emoji)
  • Substitute ♂ (&male;) when ⚨ is specifically required
  • Mix entity styles randomly in one file
  • Use CSS escape \26A8 inside HTML markup
  • Expect a named HTML entity—none exists for ⚨

Key Takeaways

1

Type ⚨ directly, or use hex/decimal references

&#x26A8; &#9896;
2

For CSS stylesheets, use the escape in the content property

\26A8
3

Unicode U+26A8 — VERTICAL MALE WITH STROKE SIGN

4

Not the same as ♂ (&male;) or 🚨 (emoji)

❓ Frequently Asked Questions

Use &#x26A8; (hex), &#9896; (decimal), or \26A8 in CSS content. There is no named HTML entity. In UTF-8 you can also type ⚨ directly.
U+26A8 (VERTICAL MALE WITH STROKE SIGN). Miscellaneous Symbols block. Hex 26A8, decimal 9896. Related male sign is U+2642 (♂, &male;).
In gender-related symbolic notation, specialized character sets, design elements, documentation, and any content requiring this Miscellaneous Symbols character.
HTML entities (&#9896; or &#x26A8;) go directly in markup. The CSS escape \26A8 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Miscellaneous Symbols like ⚨ use numeric codes. Use &#9896; or &#x26A8; in HTML, or \26A8 in CSS.

Explore More HTML Entities!

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