Latin Letter Small Capital A

Shortcodes

Copy and paste codes for Latin Letter Small Capital A symbol ᴀ to use in your websites, apps, blogs, and more.

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

Customize Latin Letter Small Capital A Symbol

Customize ᴀ symbol as you like and download Latin Letter Small Capital A as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Latin Letter Small Capital A symbol in HTML, CSS, and JS?

Insert ᴀ Latin Letter Small Capital A using HTML

1. Copy-paste Latin Letter Small Capital A directly:
<span>ᴀ</span>
2. HTML Decimal Code:
<span>&#7424;</span>
3. Hexadecimal Code:
<span>&#x1D00;</span>
Preview:

Add Latin Letter Small Capital A symbol with CSS

.latin-letter-small-capital-a::before {
    content: '\\1D00';
}
Preview: Latin Letter Small Capital A

Latin Letter Small Capital A JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-letter-small-capital-a').textContent = 'ᴀ';
2. Unicode Escape for ᴀ:
document.querySelector('.latin-letter-small-capital-a').textContent = '\u1D00';
Preview: