Fullwidth Latin Capital Letter N

Shortcodes

Copy useful codes for fullwidth latin capital letter n symbol N to use in websites, apps, blogs, and docs.

Unicode
U+FF2E
HTML Code
N
HEX Code
N
CSS Code
\FF2E
JS/JSON
\uFF2E
Unix/C/PHP/JAVA
0xFF2E
URL-encode
%EF%BC%AE

Customize Fullwidth Latin Capital Letter N

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

  

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

Insert in HTML

1. Direct symbol:
<span>N</span>
HTML Code:
<span>&#65326;</span>
HEX Code:
<span>&#xFF2E;</span>

Add with CSS

.fullwidth-latin-capital-letter-n::before {
  content: '\\FF2E';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-n').textContent = 'N';
copied