Latin Small Letter N With Caron

ň

Shortcodes

Copy useful codes for latin small letter n with caron symbol ň to use in websites, apps, blogs, and docs.

Unicode
U+0148
HTML Code
ň
HEX Code
ň
CSS Code
\0148
JS/JSON
\u0148
Unix/C/PHP/JAVA
0x148
URL-encode
%C5%88

Customize Latin Small Letter N With Caron

Customize ň, download it as SVG or PNG, or copy the generated HTML snippet.

ň
  

How to use Latin Small Letter N With Caron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ň</span>
HTML Code:
<span>&#328;</span>
HEX Code:
<span>&#x0148;</span>

Add with CSS

.latin-small-letter-n-with-caron::before {
  content: '\\0148';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-n-with-caron').textContent = 'ň';
copied