HTML Entity for Lowercase I Latin (U+0365)

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

What Is the Lowercase I Latin Entity?

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

Remember
Mark          combining latin small letter i
Unicode       U+0365
Hex entity    ͥ
Decimal       ͥ
Named entity  (none)
CSS escape    \0365
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 i (U+0069).

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\0365Stylesheet content (often ::after)
Direct characterbase + U+0365UTF-8 HTML text

When to Use Which

SituationUse
Readable numeric entity in HTMLbaseͥ
Decimal entity requiredbaseͥ
Generated mark via ::aftercontent: "\0365" on an element that ends with the base
Plain letter iType i — see Lowercase I
Letter i with macron insteadSee Lowercase I Latin Macron (U+012B)

Live Preview

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

On letter n nͥ
On letter a aͥ
Large sample oͥ
vs letter i / macron nͥ  |  i  |  ī
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+0365 to a base (no named entity).

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

How It Works

1. Hex: U+0365 → &#x365; after the base. The browser combines them into nͥ.

2. Decimal: same code point as 869 → &#869; 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 \0365 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 i.

Order

Base first, then mark

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

Look-alikes

Not letter i or macron ī

i is U+0069. I with macron is U+012B. This mark is combining and needs a base.

Named

No &…; shortcut

HTML5 has no named entity for U+0365. Use &#x365; or &#869;.

CSS vs HTML

Do not mix escapes

\0365 belongs in CSS. &#x365; / &#869; belong in HTML after the base.

Encoding

Declare UTF-8

If you type the combining character directly, keep <meta charset="UTF-8"> so the file is not misread.

Fonts

Check glyph coverage

Rendering of combining letter stacks is font-dependent. Pick a font that supports U+0365 if the mark is missing.

Browser Support

Combining Latin small letter i (U+0365) and its entity forms (&#x365;, &#869;, CSS \\0365) are supported in all modern browsers. Visual stacking depends on font coverage.

✓ Universal encoding

Lowercase I Latin (U+0365)

Encode with hex, decimal, or CSS escape after a base — or type base + U+0365 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+0365 Full support

Bottom line: Prefer base&#x365; for readable HTML. Use \\0365 only inside CSS content.

Key Takeaways

  • Unicode: this combining mark is U+0365 (decimal 869).
  • HTML: prefer base&#x365; — or use base&#869; (no named entity).
  • CSS: use \0365 inside content after a base.
  • Watch out: combining U+0365 ≠ letter i ≠ macron ī.

One line: base + U+0365 → base&#x365; / base&#869; / CSS \0365.

Frequently Asked Questions

Use &#x365; (hex), &#869; (decimal), or the CSS escape \0365 in the content property. Place the mark immediately after the base character (e.g. n&#x365;). There is no named HTML entity.
U+0365 (COMBINING LATIN SMALL LETTER I). Hex 365, decimal 869. It belongs to Combining Diacritical Marks (U+0300–U+036F).
No. HTML5 does not define a named entity for U+0365. Use numeric references like &#x365; or &#869;.
Use it in linguistics, phonetic notation, and scholarly stacks where a small i sits above a base letter. Always write the base first, then the combining mark.
HTML entities (&#869; or &#x365;) go in markup after the base. The CSS escape \0365 is used in stylesheets (usually in the content property of ::after). Both apply the same combining letter.
No. Letter i is U+0069. I with macron ī is U+012B. U+0365 is a combining mark that attaches above (or with) the preceding base character.

Did you know?

Lowercase I Latin here means Unicode U+0365 (decimal 869) — COMBINING LATIN SMALL LETTER I in Combining Diacritical Marks. HTML5 has no named entity. Place it after the base (e.g. n&#x365; → nͥ). It is not the same as typed i (U+0069) or macron ī.

Next: Lowercase I Latin Macron

Learn the HTML entity for lowercase i with macron (ī).

Lowercase I Latin macron 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