Fullwidth Latin Small Letter N

Shortcodes

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

Unicode
U+FF4E
HTML Code
n
HEX Code
n
CSS Code
\FF4E
JS/JSON
\uFF4E
Unix/C/PHP/JAVA
0xFF4E
URL-encode
%EF%BD%8E

Customize Fullwidth Latin Small Letter N

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

  

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

Insert in HTML

1. Direct symbol:
<span>n</span>
HTML Code:
<span>&#65358;</span>
HEX Code:
<span>&#xFF4E;</span>

Add with CSS

.fullwidth-latin-small-letter-n::before {
  content: '\\FF4E';
}

Set it in JavaScript

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