Latin Small Letter Ae

æ

Shortcodes

Copy useful codes for latin small letter ae symbol æ to use in websites, apps, blogs, and docs.

Unicode
U+00E6
Alt Code
230
HTML Code
æ
HTML Entity
æ
HEX Code
æ
CSS Code
\00E6
JS/JSON
\u00E6
Unix/C/PHP/JAVA
0xE6
URL-encode
%C3%A6

Customize Latin Small Letter Ae

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

æ
  

How to use Latin Small Letter Ae Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>æ</span>
HTML Code:
<span>&#230;</span>
HTML Entity:
<span>&aelig;</span>
HEX Code:
<span>&#x00E6;</span>

Add with CSS

.latin-small-letter-ae::before {
  content: '\\00E6';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-ae').textContent = 'æ';
copied