Latin Small Letter N With Cedilla

ņ

Shortcodes

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

Unicode
U+0146
HTML Code
ņ
HEX Code
ņ
CSS Code
\0146
JS/JSON
\u0146
Unix/C/PHP/JAVA
0x146
URL-encode
%C5%86

Customize Latin Small Letter N With Cedilla

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

ņ
  

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

Insert in HTML

1. Direct symbol:
<span>ņ</span>
HTML Code:
<span>&#326;</span>
HEX Code:
<span>&#x0146;</span>

Add with CSS

.latin-small-letter-n-with-cedilla::before {
  content: '\\0146';
}

Set it in JavaScript

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