HTML Entity for Lowercase X Latin (U+036F)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+036F

What Is the Lowercase X Latin Entity?

On this page, Lowercase X Latin is the combining mark at Unicode U+036F (COMBINING LATIN SMALL LETTER X). It places a small letter x on the preceding base character — used in linguistics, phonetic transcription, and medieval notation.

Remember
Mark          combining latin small letter x
Unicode       U+036F
Hex entity    ͯ
Decimal       ͯ
Named entity  (none)
CSS escape    \036F
Order         base + mark  →  nͯ

Combining marks are not standalone letters. Write the base character first, then the entity (e.g. nͯ → nͯ). This is not the same as typing x (U+0078).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityͯHTML after the base character
Decimal entityͯHTML after the base character
Named entityNoneHTML5 does not define one
CSS escape\036FStylesheet content (often ::after)
Direct characterbase + U+036FUTF-8 HTML text

When to Use Which

SituationUse
Readable numeric entity in HTMLbaseͯ
Decimal entity requiredbaseͯ
Generated mark via ::aftercontent: "\036F" on an element that ends with the base
Plain letter xType x — see Lowercase X
Looking for a named formNone — use hex or decimal after the base

Live Preview

Combining Latin small letter x on common bases (font-dependent).

On letter n nͯ
On letter a aͯ
Large sample oͯ
vs letter x nͯ  |  x
With entities nͯ | nͯ

Complete HTML Example

One page that shows this combining mark with hex, decimal, and CSS after a base character. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to attach U+036F to a base (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase X Latin (U+036F)</title>
  <style>
    #point::after {
      content: "\036F";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: n&#x036F;</p>
  <p>Using HTML Code: n&#879;</p>
  <p id="point">Using CSS Entity: n</p>
  <p>More bases: a&#x036F; o&#x036F;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+036F → &#x036F; after the base. The browser combines them into nͯ.

2. Decimal: same code point as 879 → &#879; after the base. Same result as hex.

3. Named: HTML5 does not define a named entity for this mark — use hex or decimal instead.

4. CSS: use \036F in content (not an HTML entity). #point::after appends the combining mark after the base text ending in n.

Pitfalls & Tips

Common mistakes when working with combining Latin small letter x.

Order

Base first, then mark

Write n&#x036F;, not &#x036F;n. Combining marks attach to the preceding character.

Named

No named entity

HTML5 has no &... name for U+036F — use hex or decimal instead.

CSS vs HTML

Do not mix escapes

\036F belongs in CSS. &#x036F; / &#879; belong in HTML after the base.

Look-alikes

Not plain x

Plain x is U+0078, a standalone letter. This mark only stacks a small x on a base.

Fonts

Rendering varies

Not every font draws combining marks well. If the small x looks wrong, try a font with strong diacritic support.

Semicolon

End references

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

Browser Support

Combining Latin small letter x (U+036F) and its entity forms (&#x036F;, &#879;, CSS \\036F) are supported in all mainstream browsers. Glyph quality depends on the font.

✓ Universal support

Lowercase X Latin (U+036F)

Place &#x036F; or &#879; after a base, or use CSS \\036F — same combining mark everywhere. No named entity.

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+036F / entities Full support

Bottom line: Write base + mark (e.g. n&#x036F;). Use \\036F only inside CSS content. Prefer plain x for ordinary text.

Key Takeaways

  • Unicode: combining Latin small letter x is U+036F (decimal 879).
  • HTML: no named entity — use base&#x036F; or base&#879;.
  • CSS: use \036F in content after a base.
  • Order: base first, then mark — not the same as plain x.

One line: U+036F → base + &#x036F; / &#879; / CSS \036F (no named entity).

Frequently Asked Questions

Use &#x036F; (hex), &#879; (decimal), or the CSS escape \036F in the content property. Place the mark immediately after the base character (e.g. n&#x036F;). There is no named HTML entity.
U+036F (COMBINING LATIN SMALL LETTER X). Hex 036F, decimal 879. It belongs to Combining Diacritical Marks (U+0300–U+036F).
No. HTML5 does not define a named entity for this combining mark. Use numeric references &#879; or &#x036F; after a base character.
Use it for medieval notation, phonetic transcription, and linguistic examples that need a small x stacked on a base letter. Prefer plain x (U+0078) for ordinary text.
HTML entities (&#879; or &#x036F;) go in markup after the base. The CSS escape \036F is used in stylesheets (usually in the content property of ::after on an element that ends with the base).
No. Plain x is U+0078. Subscript x is U+2093. U+036F is a combining mark that attaches to the preceding character. Do not use one in place of the other.

Did you know?

Lowercase X Latin here means Unicode U+036F (decimal 879) — COMBINING LATIN SMALL LETTER X in Combining Diacritical Marks. HTML5 has no named entity. Place it after the base (e.g. n&#x36F; → nͯ). It is not the same as typed x (U+0078) or subscript x (U+2093).

Next: Lowercase X Latin Subscript

Learn the HTML entity for subscript x — the next letter in this entity sequence.

Lowercase X Latin Subscript 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