0% found this document useful (0 votes)
47 views

HTML Midterm Module 1st Topic PDF

Uploaded by

Vincent Madrid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views

HTML Midterm Module 1st Topic PDF

Uploaded by

Vincent Madrid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Information Sheet 5

Special Characters in HTML

o Language contains a variety of special characters that you can need to use particularly. If you plan to present
material in a language other than English. You can include Special Characters in HTML code by using
special tags called entities or entity reference.
o Unlike the tags you’velearned about so far, special characters aren’t neatly tucked into paired brackets (<>);
instead they always begin an ampersand (&) and ends with semicolon (;).

Characters HTML Code Meaning


& &amp; -Ampersand
< &lt; -Less than
> &gt; -Greater than
á &aacute; -Lower case a with acute
accent
à &agrave; -Lower case a with graveaccent
â &acirc; -Lower case a with circumflex
ä &auml; -Lower case with umlaut
å &aring; -Lower case with ring
ç &ccedil; -Lower case c with cedilla
ñ &ntilde; -Lower case n with tilde
ø &oslash; -Lower case o with slash
ß &szlig; -Lower case sharp s symbol
¢ &cent; -Cent
£ &pound; -Pound
¥ &yen; -Yen
§ &sect; -Section
© &copy; -Copyright sign
® &reg; -Registered
¼ &frac 14; -Fraction number one-quarter
½ &frac12; -fraction number one-half
¾ &frac34; - fraction number three-quarter
° &deg; -degree
¶ &para; -pilcrow (paragraph)
¤ &curren; -generalcurrency
Some currency symbols
Char Dec Hex Name
₠ &#8352; &#20A0; EURO CURRENCY SIGN
₡ &#8353; &#20A1; COLON SIGN
₢ &#8354; &#20A2; CRUZEIRO SIGN
₣ &#8355; &#20A3; FRENCH FRANC
₤ &#8356; &#20A4; LIRA SIGN
₨ &#8360; &#20A8; RUPEE SIGN
₩ &#8361; &#20A9; WON SIGN
₫ &#8363; &#20AB; DONG SIGN
€ &#8364; &#20AC; EURO SIGN
₭ &#8365; &#20AD; KIP SIGN
₮ &#8366; &#20AE; TUGRIK SIGN
₱ &#8369; &#20B1; PESO SIGN
₳ &#8371; &#20B3; AUSTRAL SIGN
$ &#36; &#x24; DOLLAR SIGN

French/German/Spanish or Italian
aacute á aeiou
agrave à aeiou
asircimplex â aeiou

Some with emoji smileys


CHAR DEC HEX NAME

&#128513; &#1F601; GRINNINGWITH SMILING EYES

&#128514; &#1F602; FACE WITH TEARS OF JOY

SMILING FACE WITH OPEN


&#128515; &#1F603; MOUTH

&#128519; &#1F607; SMILING FACE WITH HALO

&#128521; &#1F609; WINKING FACE

&#128567; &#1F637 FACE WITH FACE MASK

Sample Program:
<html><head><title>SPECIAL
CHARACTERS</title></head>
<body>
The following are formatted with &lt;b7&gt;for
boldface and &lt;i&gt; for italics.<br>

<b>Gibt es einCaf&eacute; in der


N&auml;he?</b><br>
<i>Is there a Caf&eacute; nearby</i><br>
<b> Je voudrais un d&icirc;ner.</b><br>
<i> I want to eat dinner.</i><br>
<b> Y una mesa por ma&ntilde;ana for favor.</b><br>
<i>And a table for tomorrow ,please.</i><br>
<b>Oh! C’&egrave;unaspecialist&agrave;locale?</b><br>
<i>Oh! Is there a local specialty? </i></body></html>
Example;
1. Resumé
2. Señorita
3. Sauté
4. Máter (máter) <Latin> mother
5. Après moi (ä-pre mwä’) <French> after me
6. Quiénsa’be?(kyensä’be?) <Spanish> who knows?
7. DéJàvu <French>
8. Cøpenhagen <German>

Sample Program

<html>
<body>
<span style='font-size:100px;'>&#128567;</span>
<p>each for &#8364;45 </p>
<p>each for &#8369;150 </p>
</body>
</html>

You might also like