Latin Small Letter A With Diaeresis

ä

Shortcodes

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

Unicode
U+00E4
Alt Code
228
HTML Code
ä
HTML Entity
ä
HEX Code
ä
CSS Code
\00E4
JS/JSON
\u00E4
Unix/C/PHP/JAVA
0xE4
URL-encode
%C3%A4

Customize Latin Small Letter A With Diaeresis

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

ä
  

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

Insert in HTML

1. Direct symbol:
<span>ä</span>
HTML Code:
<span>&#228;</span>
HTML Entity:
<span>&auml;</span>
HEX Code:
<span>&#x00E4;</span>

Add with CSS

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

Set it in JavaScript

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