Latin Small Letter A With Caron

ǎ

Shortcodes

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

Unicode
U+01CE
HTML Code
ǎ
HEX Code
ǎ
CSS Code
\01CE
JS/JSON
\u01CE
Unix/C/PHP/JAVA
0x1CE
URL-encode
%C7%8E

Customize Latin Small Letter A With Caron

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

ǎ
  

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

Insert in HTML

1. Direct symbol:
<span>ǎ</span>
HTML Code:
<span>&#462;</span>
HEX Code:
<span>&#x01CE;</span>

Add with CSS

.latin-small-letter-a-with-caron::before {
  content: '\\01CE';
}

Set it in JavaScript

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