Latin Capital Letter A With Breve

Ă

Shortcodes

Copy useful codes for latin capital letter a with breve symbol Ă to use in websites, apps, blogs, and docs.

Unicode
U+0102
HTML Code
Ă
HEX Code
Ă
CSS Code
\0102
JS/JSON
\u0102
Unix/C/PHP/JAVA
0x102
URL-encode
%C4%82

Customize Latin Capital Letter A With Breve

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

Ă
  

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

Insert in HTML

1. Direct symbol:
<span>Ă</span>
HTML Code:
<span>&#258;</span>
HEX Code:
<span>&#x0102;</span>

Add with CSS

.latin-capital-letter-a-with-breve::before {
  content: '\\0102';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-a-with-breve').textContent = 'Ă';
copied