Latin Subscript Small Letter A

Shortcodes

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

Unicode
U+2090
HTML Code
ₐ
HEX Code
ₐ
CSS Code
\2090
JS/JSON
\u2090
Unix/C/PHP/JAVA
0x2090
URL-encode
%E2%82%90

Customize Latin Subscript Small Letter A

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₐ</span>
HTML Code:
<span>&#8336;</span>
HEX Code:
<span>&#x2090;</span>

Add with CSS

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

Set it in JavaScript

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