HTML Entity for Lowercase N Caron (ň)

What You'll Learn
How to display the lowercase n with caron (ň) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0148 in the Latin Extended-A block. It is used in Czech and Slovak for the palatal nasal sound (like “ny” in “canyon”) and in Turkmen for the velar nasal /ŋ/ sound.
Render it with ň, ň, ň, or CSS escape \0148. The named entity ň is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase N Caron Entity
U+0148Latin Extended-A
ňHexadecimal reference
ňDecimal reference
ňMost readable option
Name Value
──────────── ──────────
Unicode U+0148
Hex code ň
HTML code ň
Named entity ň
CSS code \0148
Meaning Latin small letter n with caron
Related U+0147 = Ň (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase n caron (ň) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0148";
}
</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 caron (ň) and the named entity ň are supported in all modern browsers:
👀 Live Preview
See the lowercase n caron (ň) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ň uses the Unicode hexadecimal value 0148 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ň uses the decimal Unicode value 328 to display the same character. A common method when a numeric reference is needed.
Named Entity
ň is the named entity for n caron—readable in source HTML and easy to remember for this specific character.
CSS Entity
\0148 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+0148 sits in Latin Extended-A. Uppercase equivalent: U+0147 (Ň). Do not confuse with ñ (n with tilde, U+00F1) or ʼn (n apostrophe, U+0149).
Use Cases
The lowercase n caron (ň) is commonly used in:
Essential for correct spelling in Czech (e.g. kůň, daň). Represents the palatal nasal sound /ɲ/.
Used in Slovak words such as kň (horse) and daň (tax). Same palatal nasal sound as in Czech.
Part of the Turkmen alphabet for the velar nasal sound /ŋ/ (similar to “ng” in “thing”).
Localization and i18n for Central European or Turkmen audiences. Correct characters improve readability and SEO.
When building HTML from CMS content or translation data, using ň or ň guarantees correct output.
Tutorials on HTML entities, Unicode, or Czech/Slovak/Turkmen orthography showing ň and numeric codes.
Using the correct character (U+0148) ensures assistive technologies pronounce language-specific content correctly.
💡 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="cs",lang="sk", orlang="tk"on relevant content - Use fonts that support Latin Extended-A characters
- Distinguish ň (U+0148) from ñ (n tilde) when spelling matters
Don’t
- Confuse ň (U+0148) with ñ (n tilde, U+00F1) or ʼn (n apostrophe, U+0149)
- Substitute plain
nwhen ň is required for correct Czech or Slovak spelling - Put CSS escape
\0148in 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
\0148Unicode U+0148 — LATIN SMALL LETTER N WITH CARON
Used in Czech, Slovak, and Turkmen; uppercase is Ň (U+0147)
Previous: Lowercase N Apostrophe (ʼn) Next: Lowercase N Cedilla (ņ)
❓ Frequently Asked Questions
ň (named), ň (hex), ň (decimal), or \0148 in CSS content. In UTF-8 you can also type ň directly.U+0148 (LATIN SMALL LETTER N WITH CARON). Latin Extended-A block. Hex 0148, decimal 328. Used in Czech, Slovak, and Turkmen. Uppercase form is U+0147 (Ň).ň. You can also use ň or ň, or the CSS entity \0148.ň, ň, or ň) is used in HTML content; CSS entity \0148 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
