Latin Small Letter A With Inverted Breve

ȃ

Shortcodes

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

Unicode
U+0203
HTML Code
ȃ
HEX Code
ȃ
CSS Code
\0203
JS/JSON
\u0203
Unix/C/PHP/JAVA
0x203
URL-encode
%C8%83

Customize Latin Small Letter A With Inverted Breve

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

ȃ
  

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

Insert in HTML

1. Direct symbol:
<span>ȃ</span>
HTML Code:
<span>&#515;</span>
HEX Code:
<span>&#x0203;</span>

Add with CSS

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

Set it in JavaScript

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