Latin Small Letter A With Breve

ă

Shortcodes

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

Unicode
U+0103
HTML Code
ă
HEX Code
ă
CSS Code
\0103
JS/JSON
\u0103
Unix/C/PHP/JAVA
0x103
URL-encode
%C4%83

Customize Latin Small Letter A With Breve

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

ă
  

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

Insert in HTML

1. Direct symbol:
<span>ă</span>
HTML Code:
<span>&#259;</span>
HEX Code:
<span>&#x0103;</span>

Add with CSS

.latin-small-letter-a-with-breve::before {
  content: '\\0103';
}

Set it in JavaScript

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