Latin Capital Letter N With Cedilla

Ņ

Shortcodes

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

Unicode
U+0145
HTML Code
Ņ
HEX Code
Ņ
CSS Code
\0145
JS/JSON
\u0145
Unix/C/PHP/JAVA
0x145
URL-encode
%C5%85

Customize Latin Capital Letter N With Cedilla

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

Ņ
  

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

Insert in HTML

1. Direct symbol:
<span>Ņ</span>
HTML Code:
<span>&#325;</span>
HEX Code:
<span>&#x0145;</span>

Add with CSS

.latin-capital-letter-n-with-cedilla::before {
  content: '\\0145';
}

Set it in JavaScript

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