HTML Entity for Left Tack (⊣)

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

What Is the Left Tack Entity?

Left Tack (⊣) is the Mathematical Operators character at Unicode U+22A3 (LEFT TACK). It is used in logic and proof theory — the left-facing counterpart of the right tack (⊢).

Remember
Character     ⊣
Unicode       U+22A3
Hex entity    ⊣
Decimal       ⊣
Named entity  ⊣
CSS escape    \22A3
Not the same  ⊢ (⊢) · Left Tack Below (U+0318)

All of these produce the same glyph: ⊣. Prefer ⊣ when you want an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊣HTML markup (best entity default)
Hex entity⊣HTML markup
Decimal entity⊣HTML markup
CSS escape\22A3Stylesheet content
Direct character⊣UTF-8 HTML text

When to Use Which

SituationUse
Readable HTML entity source⊣
Need a numeric entity⊣ or ⊣
Generated text via ::before / ::aftercontent: "\22A3"
Right tack (turnstile)Use ⊢ (U+22A2)
Combining diacritic below a letterUse Left Tack Below (U+0318)

Live Preview

Left Tack in common logic and math contexts.

Label snippet A ⊣ B
Large glyph ⊣
Named entity ⊣ → ⊣
vs ⊢ ⊣  |  ⊢
With entities Hex: ⊣ | Decimal: ⊣ | Named: ⊣

Complete HTML Example

One page that shows this symbol with hex, decimal, named, and CSS. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All four ways to produce ⊣ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Left Tack (⊣)</title>
  <style>
    #point::after {
      content: "\22A3";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x22A3;</p>
  <p>Using HTML Code: &#8867;</p>
  <p>Using Named Entity: &dashv;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>A &dashv; B</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+22A3 → &#x22A3; in HTML. The browser turns it into ⊣.

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

3. Named: &dashv; is the HTML5 name for this character.

4. CSS: use \22A3 in content (not an HTML entity). #point::after appends that ⊣ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Left Tack.

Look-alikes

⊣ ≠ ⊢

&dashv; faces left. &vdash; faces right. Pick the code point your notation needs.

Name

&dashv; ≠ &vdash;

The names are mirror images of each other — easy to swap by mistake.

Combining

Not a diacritic

U+22A3 is a spacing math operator. For a mark under a letter, use Left Tack Below (U+0318).

CSS vs HTML

Do not mix escapes

\22A3 belongs in CSS. &dashv; / &#x22A3; / &#8867; belong in HTML.

A11y

Add nearby words

Pair the glyph with label text (for example A &dashv; B) or use aria-label when it stands alone.

Semicolon

End references

Always finish with ; — write &dashv;, not &dashv.

Browser Support

Left Tack (U+22A3) and its entity forms (&dashv;, &#x22A3;, &#8867;, CSS \\22A3) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Left Tack (&dashv;)

Encode with named, hex, decimal, or CSS escape — or type ⊣ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+22A3 / &dashv; Full support

Bottom line: Prefer &dashv; for readable HTML. Use \\22A3 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+22A3 (decimal 8867).
  • HTML: prefer &dashv; — or use &#x22A3; / &#8867;.
  • CSS: use \22A3 inside content for generated text.
  • Watch out: &dashv; ≠ &vdash;.

One line: U+22A3 → &dashv; / &#x22A3; / &#8867; / CSS \22A3.

Frequently Asked Questions

Use &dashv; (named), &#x22A3; (hex), &#8867; (decimal), or the CSS escape \22A3 in the content property. You can also type ⊣ directly in UTF-8 HTML.
U+22A3 (LEFT TACK). Hex 22A3, decimal 8867. It belongs to the Mathematical Operators block (U+2200–U+22FF).
Yes. &dashv; is the HTML5 named entity. You can also use &#x22A3; or &#8867;.
Use it in logic, proof theory, and mathematical notation for a left tack (sometimes called a reverse turnstile). Prefer &dashv; for readable HTML.
HTML entities (&dashv;, &#8867;, or &#x22A3;) go in markup. The CSS escape \22A3 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊣.
&vdash; (U+22A2) is RIGHT TACK. &dashv; (U+22A3) is LEFT TACK — the mirrored form. They are not interchangeable.

Did you know?

Left Tack is Unicode U+22A3 (decimal 8867) — LEFT TACK. HTML5 provides &dashv;. Prefer it for readable source. Do not confuse it with the right tack &vdash; (U+22A2) or the combining mark Left Tack Below (U+0318).

Next: Left Tack Below

Learn the HTML entity for Left Tack Below — next in this sequence.

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