Modifier Letter Small A

Shortcodes

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

Unicode
U+1D43
HTML Code
ᵃ
HEX Code
ᵃ
CSS Code
\1D43
JS/JSON
\u1D43
Unix/C/PHP/JAVA
0x1D43
URL-encode
%E1%B5%83

Customize Modifier Letter Small A

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵃ</span>
HTML Code:
<span>&#7491;</span>
HEX Code:
<span>&#x1D43;</span>

Add with CSS

.modifier-letter-small-a::before {
  content: '\\1D43';
}

Set it in JavaScript

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