Fullwidth Latin Small Letter J

Shortcodes

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

Unicode
U+FF4A
HTML Code
j
HEX Code
j
CSS Code
\FF4A
JS/JSON
\uFF4A
Unix/C/PHP/JAVA
0xFF4A
URL-encode
%EF%BD%8A

Customize Fullwidth Latin Small Letter J

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

  

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

Insert in HTML

1. Direct symbol:
<span>j</span>
HTML Code:
<span>&#65354;</span>
HEX Code:
<span>&#xFF4A;</span>

Add with CSS

.fullwidth-latin-small-letter-j::before {
  content: '\\FF4A';
}

Set it in JavaScript

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