Latin Letter Small Capital A

Shortcodes

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

Unicode
U+1D00
HTML Code
ᴀ
HEX Code
ᴀ
CSS Code
\1D00
JS/JSON
\u1D00
Unix/C/PHP/JAVA
0x1D00
URL-encode
%E1%B4%80

Customize Latin Letter Small Capital A

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴀ</span>
HTML Code:
<span>&#7424;</span>
HEX Code:
<span>&#x1D00;</span>

Add with CSS

.latin-letter-small-capital-a::before {
  content: '\\1D00';
}

Set it in JavaScript

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