Horje
How to combinine Diacritical Marks

A diacritical mark is a "glyph" added to a letter.

Some diacritical marks, like grave (  ̀) and acute (  ́) are called accents.

Diacritical marks can be used in combination with alphanumeric characters to produce a character that is not present in the character set (encoding) used in the page.

Here are some examples:

Mark Character Construct Result  
 ̀ a
 ́ a
̂ a
 ̃ a
 ̀ O
 ́ O
̂ O
 ̃ O

Display a character with a grave accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An a with a grave accent: a&#768;</h2>
</body>
</html>

Output should be:

Display a character with a grave accent

Display a character with a acute accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An a with an acute accent: a&#769;</h2>
</body>
</html>

Output should be:

Display a character with a acute accent

Display a character with a circumflex accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An a with a circumflex accent: a&#770;</h2>
</body>
</html>

Output should be:

Display a character with a circumflex accent

Display a character with a tilde

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An a with a tilde: a&#771;</h2>
</body>
</html>

Output should be:

Display a character with a tilde

Display a character with a grave accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An o with a grave accent: o&#768;</h2>
</body>
</html>

Output should be:

Display a character with a grave accent

Display a character with a acute accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An o with an acute accent: o&#769;</h2>
</body>
</html>

Output should be:

Display a character with a acute accent

Display a character with a circumflex accent

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An o with a circumflex accent: o&#770;</h2>
</body>
</html>

Output should be:

Display a character with a circumflex accent

Display a character with a tilde

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h1>HTML Special Character Example</h1>
<h2>An o with a tilde: o&#771;</h2>
</body>
</html>

Output should be:

Display a character with a tilde





Category :
Web Tutorial
Sub Category :
HTML Entities
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference