HTML Entity for Vertical Male Stroke Sign (⚨)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+26A8

What Is Vertical Male Stroke Sign?

Vertical male with stroke sign (⚨) is the Unicode character at U+26A8 in Miscellaneous Symbols. Official name: VERTICAL MALE WITH STROKE SIGN — a gender-related symbol glyph. It is not the same as male sign ♂.

Remember
Character     ⚨
Unicode       U+26A8
Hex entity    ⚨
Decimal       ⚨
CSS escape    \26A8
Named entity  (none)
Not the same  ♂ · ⚦ · ⚩

Prefer ⚨ or ⚨ in HTML markup. You can also type ⚨ in UTF-8. There is no named entity. Always pair the glyph with clear text or an accessible name.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⚨HTML text (UTF-8)
Hex entity⚨HTML markup (preferred)
Decimal entity⚨HTML markup
CSS escape\26A8Stylesheet content
Named entity—Not defined in HTML5
BlockMiscellaneous SymbolsU+2600–U+26FF

When to Use Which

SituationUse
Vertical male with stroke (⚨)⚨ or ⚨
Male sign (♂)♂ (♂)
Male with stroke (⚦)⚦ (⚦)
Horizontal male with stroke (⚩)⚩ (⚩)
Female sign (♀)♀ (♀)
Generated text via ::before / ::aftercontent: "\26A8"

Live Preview

Vertical male stroke sign rendered alone, labeled, and next to related symbols.

Large glyph ⚨
Labeled Symbol: ⚨ (U+26A8)
Compared ⚨  |  ♂  |  ⚦  |  ⚩
Hint Compare: Vertical ⚨ | Male ♂ | Stroke ⚦ | Horizontal ⚩
With entities Hex: ⚨ | Decimal: ⚨

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⚨, plus a short labeled example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Vertical Male Stroke Sign (⚨)</title>
  <style>
    #point::after {
      content: "\26A8";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x26A8;</p>
  <p>Using HTML Code: &#9896;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⚨</p>
  <p>Symbol: ⚨ (U+26A8)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+26A8 → &#x26A8; in HTML. The browser turns it into ⚨.

2. Decimal: same code point as 9896 → &#9896;. Same result as hex.

3. CSS: use \26A8 in content (not an HTML entity). #point::after appends that ⚨ after the paragraph text.

4. Typed / label: paste ⚨ in UTF-8, and keep a text label nearby so the symbol is understandable.

Pitfalls & Tips

Common mistakes when working with U+26A8.

Named

No named entity

HTML5 has no named entity for U+26A8. Use &#x26A8; or &#9896; — do not invent a name.

vs ♂

Not &male;

♂ (&male;) is the standard male sign. ⚨ is a different stroke form.

vs ⚦

Not male stroke sign

⚦ is MALE WITH STROKE SIGN. ⚨ is the vertical male with stroke variant.

vs ⚩

Not the horizontal form

⚩ is HORIZONTAL MALE WITH STROKE SIGN — related family, different code point.

Fonts

Glyph depends on font

Some fonts omit or simplify Misc. Symbols gender glyphs. Test your font, or use an SVG when brand consistency matters.

CSS vs HTML

Do not mix escapes

\26A8 belongs in CSS strings. &#x26A8; / &#9896; belong in HTML.

A11y

Always label the symbol

Screen readers may announce a generic “symbol.” Add visible text or aria-label that states the intended meaning.

Browser Support

Vertical male with stroke sign (U+26A8) and its entity forms (&#x26A8;, &#9896;, CSS \\26A8) are supported in all mainstream browsers. Visible glyphs depend on fonts that include Miscellaneous Symbols.

✓ Universal support

Vertical Male Stroke Sign (&#x26A8;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+26A8 Full support

Bottom line: Prefer &#x26A8; or &#9896; in HTML. Use \\26A8 only inside CSS content. Do not confuse with ♂ (&male;).

Key Takeaways

  • Unicode: vertical male stroke sign is U+26A8 (decimal 9896) — glyph ⚨.
  • HTML: use &#x26A8; or &#9896; — no named entity in HTML5.
  • CSS: use \26A8 inside content for generated text.
  • Meaning: ⚨ is vertical male with stroke — not ♂ (&male;), not ⚦, not ⚩.

One line: U+26A8 → &#x26A8; / &#9896; / CSS \26A8.

Frequently Asked Questions

Use &#x26A8; (hex), &#9896; (decimal), type ⚨ directly in UTF-8, or the CSS escape \26A8 in content. There is no named HTML entity for U+26A8.
U+26A8 (VERTICAL MALE WITH STROKE SIGN). Hex 26A8, decimal 9896. It belongs to Miscellaneous Symbols (U+2600–U+26FF).
No. HTML5 does not define a named entity for this character. Use numeric forms &#9896; or &#x26A8;.
No. ♂ is the male sign (&male;, U+2642). ⚨ is VERTICAL MALE WITH STROKE SIGN — a different Unicode character.
Use it when your content specifically needs this Miscellaneous Symbols glyph. Always pair it with visible text or an aria-label so the meaning is clear.
HTML entities (&#9896; or &#x26A8;) go in markup. The CSS escape \26A8 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Vertical male with stroke sign (⚨) is Unicode U+26A8 (decimal 9896) — official name VERTICAL MALE WITH STROKE SIGN in Miscellaneous Symbols. HTML5 has no named entity — use &#x26A8; or &#9896;. Do not confuse with male sign ♂ (&male;, U+2642) or horizontal male stroke sign (U+26A9). Pair the glyph with clear text or an accessible name.

Next: Vertical Tilde

Learn the HTML entity for combining vertical tilde (U+033E).

Continue tutorial →

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