Fullwidth Latin Small Letter A

Shortcodes

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

Unicode
U+FF41
HTML Code
a
HEX Code
a
CSS Code
\FF41
JS/JSON
\uFF41
Unix/C/PHP/JAVA
0xFF41
URL-encode
%EF%BD%81

Customize Fullwidth Latin Small Letter A

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

  

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

Insert in HTML

1. Direct symbol:
<span>a</span>
HTML Code:
<span>&#65345;</span>
HEX Code:
<span>&#xFF41;</span>

Add with CSS

.fullwidth-latin-small-letter-a::before {
  content: '\\FF41';
}

Set it in JavaScript

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