KandZ – Tuts

We like to help…!

HTML 19 💻 Entities, Symbols and Emojis in HTML

Entities and symbols

&lt;   less than (<) <br>
&gt;   greater than (>) <br>
&amp;   ampersand (&) <br>
&quot;  quotation mark (") <br>
&apos;  apostrophe (') <br>
&eacute;  Euro currency symbol (€) <br>
&pound;  pound sterling symbol (£) <br>
&cent;  cent symbol (¢) <br>
&curren;  currency symbol (¤) <br>
&yen;   yen symbol (¥) <br>
&trade;  trademark symbol (™) <br>
&reg;  registered trademark symbol (®) <br>
&copy;  copyright symbol (©) <br>
&iexacute;  soft hyphen (-) <br>
&sect;  section symbol (§) <br>
&para;  paragraph symbol (¶) <br>
&dash;   en dash (–) <br>
&permil;  per mille sign (‰) <br>
&times;  times symbol (×) <br>
&divide;  division symbol (÷) <br>
&plus;   plus sign (+) <br>
&minus;  minus sign (-) <br>
&middot;  middle dot (·) <br>
&sup2;  superscript two (²) <br>
&sup3;  superscript three (³) <br>
&acute;   acute accent (á é í ó ú) <br>
&aacute;   acute accent (à è ì î ò ú) <br>
&eacute;  acute accent (é â ê ë ï î ô ü) <br>
&oacute;   acute accent (ô û) <br>
&uacute;  acute accent (ú û) <br>
&cacute;   acute accent (ç Ç) <br>
&eacute;   acute accent (è â ê ë ï î ô ü) <br>
&uacute;  acute accent (ù ú û) <br>
&cacute;   acute accent (ç Ç) <br>
&racute;   acute accent (ř Ř) <br>
&cuml;  cumulus sign (∫) <br>
&summation;  summation sign (∑) <br>
&prod;   product sign (∏) <br>
&radic;   radical symbol (√) <br>
&divisionslash;  fraction slash (÷) <br>
&fraction;  fraction symbol (½ ¾) <br>
&int;   integral sign (∫) <br>
&therefore;  therefore symbol (therefore) <br>
&sim;   not equal to (≈) <br>
&sub;   subset of (∋) <br>
&sup;   superset of (∈) <br>
&nsub;  not a subset of (∋) <br>
&sube;  subset of or equal to (∋) <br>
&supe;   superset of or equal to (∈) <br>
&not;   logical NOT operator (!) <br>
&forall;  for all (∀) <br>
&exists;  there exists (∃) <br>
  • Entity is a way to represent special characters or symbols that are reserved from HTML or not available on all systems
  • You can also define custom entities like

Emojis

 <meta charset="utf-8">

 <p>&#x1F602; Hello! (wave)</p>
    <p>&#x1F60E; Smiling face with smiling eyes</p>
    <p>&#x1F600; Beaming face with smiling eyes</p>
    <p>&#x1F636; Face with rolling eyes</p>
    <p>&#x1F926; Thinking face</p>
    <p>&#x1F94A; Nerdy face with monocle and lab coat</p>
    <p>&#x1F38D; Performing arts</p>
    <p>&#x1F3AD; Palette with paintbrush and roll of paper</p>
    <p>&#x1F6B2; Muscle man flexing</p>
    <p>&#x1F680; Rocket ship</p>
    <p>&#x1F304; Globe with meridians of longitude</p>
    <p>&#x1F31F; Sun with rays</p>
    <p>&#x1F32D; Waning crescent moon</p>
    <p>&#x1F949; Pine tree in fall colors</p>
    <p>&#x1F681; Person skating on ice</p>
    <p>&#x1F385; Gift with ribbon</p>
    <p>&#x2703; Opening gift</p>
    <p>&#x1F96A; Closed book with curling corners</p>
    <p>&#x1F64B; Broken heart</p>
    <p>&#x1F975; Face blowing a kiss</p>
    <p>&#x1F373; Sleeping face</p>
    <p>&#x1F60D; Person frowning</p>
    <p>&#x1F928; Angry face with clenched teeth and upraised eyebrows</p>
    <p>&#x1F927; Disappointed but not completely defeated face</p>
    <p>&#x1F642; Confused but trying to understand face</p>
    <p>&#x1F9D3; Face with symbol over eyes</p>
    <p>&#x1F912; Thinking face with raised eyebrows and hand on chin</p>
    <p>&#x1F648; Zipper-mouthed face</p>
    <p>&#x1F637; Unamused or unimpressed face</p>
    <p>&#x1F62D; Crystal ball weeping face</p>
    <p>&#x1F9E8; Person in a lotus position</p>
    <p>&#x1F64A; Man lifting a heavy weight</p>
    <p>&#x1F3C0; Person doing acrobatics</p>
    <p>&#x1F3CA; Motion picture camera</p>
    <p>&#x1F39E; Television with power button turned on</p>
    <p>&#x1F4E7; Telephone receiver</p>
    <p>&#x1F94B; Magnifying glass</p>
    <p>&#x1F3C5; Stage with curtains and stage lights</p>
    <p>&#x1F45D; Movie ticket stubs</p>
    <p>&#x1F37B; Person with popcorn in their hands</p>
    <p>&#x1F3C0; Pine tree during the winter season</p>
    <p>&#x1F385; Person riding a skateboard</p>
    <p>&#x1F68E; Gymnast doing handstands</p>
    <p>&#x1F44C; Woman gesturing with both hands</p>
    <p>&#x1F682; Man lifting a heavy weight</p>
    <p>&#x1F9D7; Girl and boy hugging</p>
    <p>&#x1F308; Cherry blossom tree in full bloom</p>
    <p>&#x1F752; Evergreen tree with snow on its branches</p>
    <p>&#x1F34A; Tree with autumn foliage</p>

Leave a Reply