Latin Capital Letter Ae

Æ

Shortcodes

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

Unicode
U+00C6
Alt Code
198
HTML Code
Æ
HTML Entity
Æ
HEX Code
Æ
CSS Code
\00C6
JS/JSON
\u00C6
Unix/C/PHP/JAVA
0xC6
URL-encode
%C3%86

Customize Latin Capital Letter Ae

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

Æ
  

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

Insert in HTML

1. Direct symbol:
<span>Æ</span>
HTML Code:
<span>&#198;</span>
HTML Entity:
<span>&AElig;</span>
HEX Code:
<span>&#x00C6;</span>

Add with CSS

.latin-capital-letter-ae::before {
  content: '\\00C6';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-ae').textContent = 'Æ';
copied