HTML Entity for Lowercase X Latin (ͯ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+036F

What You'll Learn

How to display the combining Latin small letter x (ͯ) in HTML using hexadecimal, decimal, and CSS escape methods. This character (U+036F) is a nonspacing combining mark from the Combining Diacritical Marks block. It appears as a small superscript “x” above a base character—for example, shows a small x above the letter n.

Render it with ͯ, ͯ, or CSS escape \036F. There is no named HTML entity. As a combining character, it must follow a base character for correct rendering. Do not confuse with plain x (U+0078) or subscript x (ₓ, U+2093).

⚡ Quick Reference — Lowercase X Latin Entity

Unicode U+036F

Combining Diacritical Marks

Hex Code ͯ

Hexadecimal reference

HTML Code ͯ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+036F
Hex code       ͯ
HTML code      ͯ
Named entity   (none)
CSS code       \036F
Meaning        Combining Latin small letter x
Type           Combining mark (nonspacing, Mn)
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing the combining Latin small letter x (ͯ) using hexadecimal code, decimal HTML code, and a CSS content escape. The combining example shows it after a base letter:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\036F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x036F;</p>
<p>Symbol (decimal): &#879;</p>
<p id="point">Symbol (CSS): </p>
<p>Combining: n&#x036F;</p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The combining Latin small letter x (ͯ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the combining Latin small letter x (ͯ) and how it combines with a base character:

Glyph aloneͯ
With base letter
Character typeCombining mark (not standalone x)
Not the same asx (U+0078, plain letter)  |  ͮ (combining v)
Numeric refs&#x036F; &#879; \036F

🧠 How It Works

1

Hexadecimal Code

&#x036F; uses the Unicode hexadecimal value 036F to display the character. Place it immediately after a base character so it renders above it.

HTML markup
2

Decimal HTML Code

&#879; uses the decimal Unicode value 879 to display the same character. A common method for combining characters.

HTML markup
3

CSS Entity

\036F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Combining mark behavior

All three methods produce ͯ. Unicode U+036F is a nonspacing combining character (Mn) in the Combining Diacritical Marks block. Place it immediately after a base letter (e.g. n&#x036F;) so it combines correctly. There is no named HTML entity.

Use Cases

The combining Latin small letter x (ͯ) is commonly used in:

📜 Medieval notation

Superscript or abbreviated letter “x” in medieval Latin script and palaeographic transcriptions.

🗣 Phonetic transcription

Phonetic or phonological notation where a small x is placed above a base letter.

🔤 Linguistics

Academic papers, critical editions, and language documentation using combining characters.

🎨 Typography

Font specimens showcasing Combining Diacritical Marks (U+0300–U+036F) support.

📄 Normalization

Unicode normalization (NFC/NFD) and text processing of combining sequences.

⚙ Unicode testing

Testing support of combining characters and correct rendering order.

📝 Annotation

Transliteration or annotation systems using ͯ to modify a base character.

💡 Best Practices

Do

  • Use &#879; or &#x036F; in HTML (no named entity exists)
  • Place ͯ immediately after the base character for correct combining
  • Serve pages as UTF-8 for combining character support
  • Use fonts that support Combining Diacritical Marks (U+0300–U+036F)
  • Distinguish ͯ (combining mark) from plain x (U+0078) and ₓ (subscript x)

Don’t

  • Assume a named entity exists—there is none for ͯ
  • Use plain x when a combining mark is required
  • Use the old incorrect CSS escape \0036F—the correct value is \036F
  • Put CSS escape \036F in HTML text nodes
  • Separate the combining mark from its base character with spaces or tags

Key Takeaways

1

Three references render ͯ (no named entity)

&#x036F; &#879;
2

For CSS stylesheets, use the escape in the content property

\036F
3

Unicode U+036F — COMBINING LATIN SMALL LETTER X

4

Combining mark: place after base character (e.g. n&#x036F;)

❓ Frequently Asked Questions

Use &#x036F; (hex), &#879; (decimal), or \036F in CSS content. There is no named HTML entity. Place it after a base character (e.g. n&#x036F;) for correct positioning.
U+036F (COMBINING LATIN SMALL LETTER X). Combining Diacritical Marks block. Hex 036F, decimal 879.
Yes. It is a nonspacing combining character and should follow a base character (e.g. ) for correct display.
U+036F is a nonspacing combining mark. It attaches to the preceding base character—e.g. “n” + ͯ gives nͯ. Used alone it may display with a placeholder or not position as intended.
No. Use &#879; or &#x036F; in HTML, or \036F in CSS. Do not confuse with plain x (U+0078) or subscript ₓ (U+2093).

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

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