Fullwidth Latin Capital Letter J

Shortcodes

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

Unicode
U+FF2A
HTML Code
J
HEX Code
J
CSS Code
\FF2A
JS/JSON
\uFF2A
Unix/C/PHP/JAVA
0xFF2A
URL-encode
%EF%BC%AA

Customize Fullwidth Latin Capital Letter J

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

  

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

Insert in HTML

1. Direct symbol:
<span>J</span>
HTML Code:
<span>&#65322;</span>
HEX Code:
<span>&#xFF2A;</span>

Add with CSS

.fullwidth-latin-capital-letter-j::before {
  content: '\\FF2A';
}

Set it in JavaScript

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