On this page, Lowercase I Latin is the combining mark at Unicode U+0365 (COMBINING LATIN SMALL LETTER I). It places a small letter ion 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).
Reference
Quick Reference
One table for every form you will actually use.
Form
Code
Where it goes
Hex entity
ͥ
HTML after the base character
Decimal entity
ͥ
HTML after the base character
Named entity
None
HTML5 does not define one
CSS escape
\0365
Stylesheet content (often ::after)
Direct character
base + U+0365
UTF-8 HTML text
When to Use Which
Situation
Use
Readable numeric entity in HTML
baseͥ
Decimal entity required
baseͥ
Generated mark via ::after
content: "\0365" on an element that ends with the base
Using Hex Code: nͥ
Using HTML Code: nͥ
Using CSS Entity: nͥ
More bases: aͥ oͥ
How It Works
1. Hex:U+0365 → ͥ after the base. The browser combines them into nͥ.
2. Decimal: same code point as 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ͥ, not ͥ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 ͥ or ͥ.
CSS vs HTML
Do not mix escapes
\0365 belongs in CSS. ͥ / ͥ 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.
Compatibility
Browser Support
Combining Latin small letter i (U+0365) and its entity forms (ͥ, ͥ, 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 ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerIE 9+
Yes*
U+0365Full support
Bottom line: Prefer baseͥ for readable HTML. Use \\0365 only inside CSS content.
Remember
Key Takeaways
Unicode: this combining mark is U+0365 (decimal 869).
HTML: prefer baseͥ — or use baseͥ (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ͥ / baseͥ / CSS \0365.
Frequently Asked Questions
Use ͥ (hex), ͥ (decimal), or the CSS escape \0365 in the content property. Place the mark immediately after the base character (e.g. nͥ). 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 ͥ or ͥ.
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 (ͥ or ͥ) 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ͥ → nͥ). It is not the same as typed i (U+0069) or macron ī.