HTML Entity for Left Angle Above (U+031A)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+031A

What Is the Left Angle Above Entity?

Left Angle Above is the combining diacritic at Unicode U+031A (COMBINING LEFT ANGLE ABOVE). It sits above a base letter — common in IPA for no audible release (e.g. t̚).

Remember
Mark          combining left angle above
Unicode       U+031A
Hex entity    ̚
Decimal       ̚
CSS escape    \031A
Named entity  (none)
Order         base letter + mark  →  t̚

Combining marks are not standalone letters. Write the base character first, then the entity (e.g. t̚ → t̚).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity̚HTML after the base letter
Decimal entity̚HTML after the base letter
CSS escape\031AStylesheet content (often ::after)
Direct characterbase + U+031AUTF-8 HTML text
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourcet̚ or t̚
Generated mark via ::aftercontent: "\031A" on an element that ends with the base letter
UTF-8 page, typing is easyType base + combining mark directly
Looking for a named &...; formDoes not exist — use numeric form
Left angle below insteadUse Left Angle Below — different code point

Live Preview

Left Angle Above combined with base letters (font-dependent).

With stops t̚ k̚ p̚
Large sample t̚
IPA label No audible release: [t̚]
Mark alone ̚ (needs a base letter)
With entities t̚ | t̚

Complete HTML Example

One page that shows Left Angle Above with hex, decimal, and CSS after a base letter. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to attach U+031A to a base letter.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Left Angle Above (U+031A) in HTML</title>
  <style>
    #point::after {
      content: "\031A";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: t&#x031A;</p>
  <p>Using HTML Code: t&#794;</p>
  <p id="point">Using CSS Entity: t</p>
  <p>Typed directly: t̚</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+031A → &#x031A; after the base letter. The browser combines them into t̚.

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

3. CSS: use \031A in content (not an HTML entity). #point::after appends the mark above the letter t.

4. Typed: in UTF-8 you can type the base letter and the combining mark directly — same visual result.

Pitfalls & Tips

Common mistakes when working with combining Left Angle Above.

Order

Base letter first

Write t&#x031A;, not &#x031A;t. Combining marks follow the base.

Named?

No named entity

HTML5 does not define a named entity for U+031A. Use numeric forms.

CSS vs HTML

Do not mix escapes

\031A belongs in CSS. &#x031A; / &#794; belong in HTML.

Look-alikes

Not Left Angle Below

U+031A sits above the letter. Left Angle Below is a different combining mark — see the related page.

Semicolon

End references

Always finish with ; — write &#794;, not &#794.

Fonts

Diacritic support

Use fonts with good above-base combining support (e.g. Charis SIL, DejaVu Sans, Noto Sans).

Browser Support

Combining Left Angle Above (U+031A) and its numeric entity forms (&#x031A;, &#794;, CSS \\031A) are supported in all mainstream browsers when the font positions Combining Diacritical Marks correctly.

✓ Universal support

Left Angle Above (U+031A)

Encode with hex, decimal, or CSS escape — attach after the base letter for correct combining above.

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+031A / entities Full support

Bottom line: Prefer base&#x031A; or base&#794; in HTML. Use \\031A only inside CSS content. Rendering quality depends on the font.

Key Takeaways

  • Unicode: combining left angle above is U+031A (decimal 794).
  • HTML: use &#x031A; or &#794; after the base letter.
  • CSS: use \031A inside content for generated marks.
  • Order: always base + mark — never the reverse.

One line: U+031A → t&#x031A; / t&#794; / CSS \031A.

Frequently Asked Questions

Use &#x031A; (hex), &#794; (decimal), or the CSS escape \031A in the content property. There is no named HTML entity. Place the mark immediately after the base letter (e.g. t&#x031A;).
U+031A (COMBINING LEFT ANGLE ABOVE). Hex 031A, decimal 794. It belongs to the Combining Diacritical Marks block.
No. HTML5 does not define a named entity for this combining mark. Use numeric references like &#x031A; or &#794;.
Use it in IPA and linguistics for no audible release / unreleased stops (e.g. t̚, k̚, p̚). Always write base letter first, then the combining mark.
HTML entities (&#794; or &#x031A;) go in markup after the base character. The CSS escape \031A is used in stylesheets (usually in the content property of ::after). Both apply the combining mark above the letter.
U+031A (COMBINING LEFT ANGLE ABOVE) sits above the base letter. U+0349 (COMBINING LEFT ANGLE BELOW) sits below. They are different IPA diacritics.

Did you know?

Left Angle Above is Unicode U+031A (decimal 794) — COMBINING LEFT ANGLE ABOVE. HTML5 has no named entity. Place it after the base letter (e.g. t&#x031A;). In IPA it often marks no audible release (unreleased stop).

Next: Left Angle Below

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

Left Angle Below 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