HTML Entity for Element Of With Vertical Bar At End Horizontal Stroke (⋳)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+22F3

What Is Element Of With Vertical Bar At End Horizontal Stroke?

Element of with vertical bar at end horizontal stroke (⋳) is the Unicode character at U+22F3 in Mathematical Operators. Official name: ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE. It is a membership operator with a vertical bar at the end of the horizontal stroke — useful in formal set theory and logic.

Remember
Character     ⋳
Unicode       U+22F3
Named entity  ⋳
Hex entity    ⋳
Decimal       ⋳
CSS escape    \22F3
Not the same  ∈ (isin) · ⋴ (isins) · ⋶ (overbar)

Prefer ⋳ in HTML markup. You can also use ⋳ / ⋳, or type ⋳ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⋳HTML markup (preferred)
Hex entity⋳HTML markup
Decimal entity⋳HTML markup
Direct character⋳HTML text (UTF-8)
CSS escape\22F3Stylesheet content
Small variant (related)⋴ (⋴, U+22F4)Small form of this operator

When to Use Which

SituationUse
Vertical-bar membership (full size)⋳ or type ⋳
Small vertical-bar membershipU+22F4 (⋴)
Plain / overbar element ofU+2208 (∈) · U+22F6
Not an element ofU+2209 (∉)
Generated text via ::before / ::aftercontent: "\22F3"

Live Preview

This membership operator rendered alone, in a statement, and compared with related operators.

Glyph ⋳
Large glyph ⋳
Membership x ⋳ S
Compared ⋳   ⋴   ∈   ⋶
With entities Named: ⋳ | Hex: ⋳ | Decimal: ⋳

Complete HTML Example

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

Named + Hex + Decimal + CSS + Typed

Five ways to display ⋳ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Element Of With Vertical Bar At End Horizontal Stroke (U+22F3)</title>
  <style>
    #point::after {
      content: "\22F3";
    }
  </style>
</head>
<body>
  <p>Built with Named: &isinsv;</p>
  <p>Built with Hex: &#x22F3;</p>
  <p>Built with Decimal: &#8947;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ⋳</p>
  <p>Membership: x &isinsv; S</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &isinsv; is the preferred HTML5 name for U+22F3 → ⋳.

2. Hex: &#x22F3; inserts the same code point. Same visual as named.

3. Decimal: same code point as 8947 → &#8947;.

4. CSS: use \22F3 in content (not an HTML entity). #point::after appends ⋳.

5. Typed: paste ⋳ in a UTF-8 document, or write membership like x &isinsv; S.

Pitfalls & Tips

Common mistakes when working with this membership operator.

Name

Prefer &isinsv;

&isinsv; is the readable named form for U+22F3. Numeric forms still work when you need them.

⋴

Not the small variant

U+22F4 (&isins;) is the small form. U+22F3 is the full-size operator.

∈

Not plain &isin;

U+2208 is the ordinary element-of symbol. This character adds a vertical bar at the end of the horizontal stroke.

CSS vs HTML

Do not mix escapes

\22F3 belongs in CSS strings. &isinsv; / &#x22F3; / &#8947; belong in HTML.

Fonts

Math font coverage

Some fonts omit less-common Mathematical Operators. Prefer a font with solid math coverage.

a11y

Add accessible text

Screen readers may not expand ⋳ clearly. Prefer full phrases nearby (for example “x is an element of S”) when the meaning matters.

Semicolon

End references

Always finish entities with ; — write &isinsv;, not &isinsv.

Browser Support

Element of with vertical bar at end of horizontal stroke (U+22F3) and its entity forms (&isinsv;, &#x22F3;, &#8947;, CSS \\22F3) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Element Of With Vertical Bar At End Horizontal Stroke (&#x22F3;)

Encode with named, 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+22F3 / &isinsv; Full support

Bottom line: Prefer &isinsv; in HTML. Use &#x22F3; / &#8947; when numeric form is required, and \\22F3 only inside CSS content.

Key Takeaways

  • Unicode: this operator is U+22F3 (decimal 8947) — glyph ⋳.
  • HTML: prefer &isinsv; (named form).
  • CSS: use \22F3 inside content for generated text.
  • Size: full ⋳ ≠ small ⋴ ≠ plain ∈.

One line: U+22F3 → &isinsv; / &#x22F3; / CSS \22F3.

Frequently Asked Questions

Use &isinsv; (named), &#x22F3; (hex), &#8947; (decimal), type ⋳ directly in UTF-8, or the CSS escape \22F3 in content.
U+22F3 (ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE). Hex 22F3, decimal 8947. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. &isinsv; is the HTML5 named entity for U+22F3 and is usually the most readable choice in set-theory markup.
Use it when you need this vertical-bar membership variant in formal math or logic. Prefer &isin; (U+2208) for ordinary “element of,” and &isins; (U+22F4) for the small form.
HTML entities (&isinsv;, &#8947;, or &#x22F3;) go in markup. The CSS escape \22F3 goes in stylesheet strings (usually content on ::before/::after).
No. U+22F3 is ⋳ (vertical bar at end of horizontal stroke). U+2208 is ∈ (plain element of). U+22F4 is ⋴ (the small variant).

Did you know?

This mark is Unicode U+22F3 (decimal 8947) — glyph ⋳ (ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE) in Mathematical Operators. HTML5 names it &isinsv;. The small variant is &isins; (⋴, U+22F4). The plain membership symbol is &isin; (∈, U+2208).

Next: Element Of With Vertical Bar At End Horizontal Stroke Small

Learn the HTML entity for the small variant (U+22F4).

Next 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