Latin Small Letter A

a

Shortcodes

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

Unicode
U+0061
Alt Code
97
HTML Code
a
HEX Code
a
CSS Code
\0061
JS/JSON
\u0061
Unix/C/PHP/JAVA
0x61
URL-encode
a

Customize Latin Small Letter A

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

a
  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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