Fullwidth Latin Capital Letter A

Shortcodes

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

Unicode
U+FF21
HTML Code
A
HEX Code
A
CSS Code
\FF21
JS/JSON
\uFF21
Unix/C/PHP/JAVA
0xFF21
URL-encode
%EF%BC%A1

Customize Fullwidth Latin Capital Letter A

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

  

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

Insert in HTML

1. Direct symbol:
<span>A</span>
HTML Code:
<span>&#65313;</span>
HEX Code:
<span>&#xFF21;</span>

Add with CSS

.fullwidth-latin-capital-letter-a::before {
  content: '\\FF21';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-a').textContent = 'A';
copied