Latin Capital Letter A With Diaeresis

Ä

Shortcodes

Copy useful codes for latin capital letter a with diaeresis symbol Ä to use in websites, apps, blogs, and docs.

Unicode
U+00C4
Alt Code
196
HTML Code
Ä
HTML Entity
Ä
HEX Code
Ä
CSS Code
\00C4
JS/JSON
\u00C4
Unix/C/PHP/JAVA
0xC4
URL-encode
%C3%84

Customize Latin Capital Letter A With Diaeresis

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

Ä
  

How to use Latin Capital Letter A With Diaeresis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ä</span>
HTML Code:
<span>&#196;</span>
HTML Entity:
<span>&Auml;</span>
HEX Code:
<span>&#x00C4;</span>

Add with CSS

.latin-capital-letter-a-with-diaeresis::before {
  content: '\\00C4';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-a-with-diaeresis').textContent = 'Ä';
copied