HTML Entity for Lowercase N Cedilla (ņ)

What You'll Learn
How to display the lowercase n with cedilla (ņ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0146 in the Latin Extended-A block. It is used in Latvian, where it represents the palatal nasal sound [ɲ] (similar to “ny” in “canyon”).
Render it with ņ, ņ, ņ, or CSS escape \0146. The named entity ņ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase N Cedilla Entity
U+0146Latin Extended-A
ņHexadecimal reference
ņDecimal reference
ņMost readable option
Name Value
──────────── ──────────
Unicode U+0146
Hex code ņ
HTML code ņ
Named entity ņ
CSS code \0146
Meaning Latin small letter n with cedilla
Related U+0145 = Ņ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase n cedilla (ņ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0146";
}
</style>
</head>
<body>
<p>Symbol (hex): ņ</p>
<p>Symbol (decimal): ņ</p>
<p>Symbol (named): ņ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase n cedilla (ņ) and the named entity ņ are supported in all modern browsers:
👀 Live Preview
See the lowercase n cedilla (ņ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ņ uses the Unicode hexadecimal value 0146 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ņ uses the decimal Unicode value 326 to display the same character. A common method when a numeric reference is needed.
Named Entity
ņ is the named entity for n cedilla—readable in source HTML and easy to remember for this specific character.
CSS Entity
\0146 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ņ. Unicode U+0146 sits in Latin Extended-A. Uppercase equivalent: U+0145 (Ņ). Do not confuse with ñ (n with tilde), ň (n with caron), or ç (c with cedilla).
Use Cases
The lowercase n cedilla (ņ) is commonly used in:
Essential for correct spelling in Latvian (e.g. kāpņi, ņemt). Represents the palatal nasal sound /ɲ/.
Latvian courses, dictionaries, and educational content. Entity references ensure the character displays correctly across platforms.
Localization and i18n for Latvian audiences. Correct characters improve readability and SEO for Latvian content.
When building HTML from CMS content or translation data, using ņ or ņ guarantees correct output.
Tutorials on HTML entities, Unicode, or Latvian orthography showing ņ and numeric codes.
Using the correct character (U+0146) ensures assistive technologies pronounce Latvian content correctly.
Using \0146 in the CSS content property to insert ņ via pseudo-elements.
💡 Best Practices
Do
- Use
ņin HTML when possible for readability - Serve pages as UTF-8; you can also type ņ directly in UTF-8 source
- Set
lang="lv"on Latvian content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ņ (U+0146) from ñ (n tilde) and ň (n caron) when spelling matters
Don’t
- Confuse ņ (U+0146) with ñ (n tilde), ň (n caron), or ç (c cedilla)
- Substitute plain
nwhen ņ is required for correct Latvian spelling - Put CSS escape
\0146in HTML text nodes - Double-encode numeric references in dynamically generated HTML
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ņ; named entity is most readable
ņ ņ ņFor CSS stylesheets, use the escape in the content property
\0146Unicode U+0146 — LATIN SMALL LETTER N WITH CEDILLA
Used in Latvian; uppercase is Ņ (U+0145)
Previous: Lowercase N Caron (ň) Next: Lowercase N Curl
❓ Frequently Asked Questions
ņ (named), ņ (hex), ņ (decimal), or \0146 in CSS content. In UTF-8 you can also type ņ directly.U+0146 (LATIN SMALL LETTER N WITH CEDILLA). Latin Extended-A block. Hex 0146, decimal 326. Used in Latvian. Uppercase form is U+0145 (Ņ).ņ. You can also use ņ or ņ, or the CSS entity \0146.ņ, ņ, or ņ) is used in HTML content; CSS entity \0146 is used in stylesheets in the content property of pseudo-elements. Both produce ņ.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
