Latin Small Letter A With Circumflex

â

Shortcodes

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

Unicode
U+00E2
Alt Code
226
HTML Code
â
HTML Entity
â
HEX Code
â
CSS Code
\00E2
JS/JSON
\u00E2
Unix/C/PHP/JAVA
0xE2
URL-encode
%C3%A2

Customize Latin Small Letter A With Circumflex

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

â
  

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

Insert in HTML

1. Direct symbol:
<span>â</span>
HTML Code:
<span>&#226;</span>
HTML Entity:
<span>&acirc;</span>
HEX Code:
<span>&#x00E2;</span>

Add with CSS

.latin-small-letter-a-with-circumflex::before {
  content: '\\00E2';
}

Set it in JavaScript

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