Zalgorithm

Typing html entities in markdown documents

What is an HTML entity? #

An HTML entity is a sequence of characters used in HTML to represent reserved characters like < and &.

The W3C HTML entities reference #

The W3C HTML entities list seems to be a good reference: https://www.w3.org/TR/html401/sgml/entities.html

A searchable list of HTML entities #

Alpha (uppercase) #

The Greek capital letter alpha: Α

&Alpha;

alpha (lowercase) #

The Greek lowercase letter alpha: α

&alpha;

Beta (uppercase) #

The Greek uppercase letter Beta: Β

&Beta;

beta (lowercase) #

The Greek lowercase letter beta: β

&beta;

epsilon (lowercase) #

The Greek lowercase letter epsilon: ε

&epsilon;

Pi (lowercase) #

The Greek lowercase letter pi: π

&pi;

Diacritics (accents) #

See diacritics-accents .

Acute accent #

The letter “e” with an acute accent: é

&eacute;

The letter “E” with an acute accent: É

&Eacute;

Grave accent #

The letter “a” with a grave accent: à.

&agrave;

Circumflex accent #

The letter “a” with a circumflex accent: â.

&acirc;

Diaeresis, trema, or umlaut #

The letter “o” with an umlaut: ö.

&ouml;

Tilde #

The letter “n” with a tilde: ñ.

&ntilde;

Ring or bolle #

The letter “a” with a bolle: å.

&aring;

Slash, solidus, or virgule #

The letter “o” with a slash: ø.

&oslash;
Tags: