What are the HTML 5 compatible character entities?

What are the HTML 5 compatible character entities? Character entities in HTML5 represent special characters and symbols that have a specific significance in HTML or are difficult to input directly. These entities begin with an ampersand (&) and terminate with a semicolon (;). Here’s a comprehensive overview of some common character entities accessible in HTML5:

Basic Latin:

  • & – Ampersand (&)
  • &lt; – Less than (<)
  • &gt; – Greater than (>)
  • &quot; – Double quotation mark (“)
  • &apos; – Apostrophe (‘)

Latin-1 Supplement:

  • &nbsp; – Non-breaking space
  • &iexcl; – Inverted exclamation mark (¡)
  • &cent; – Cent sign (¢)
  • &pound; – Pound sign (£)
  • &curren; – Currency sign (¤)
  • &yen; – Yen sign (¥)
  • &brvbar; – Broken bar (¦)
  • &sect; – Section sign (§)
  • &uml; – Diaeresis (¨)
  • &copy; – Copyright sign (©)
  • &reg; – Registered sign (®)
  • &deg; – Degree sign (°)
  • &plusmn; – Plus-minus sign (±)
  • &sup2; – Superscript two (²)
  • &sup3; – Superscript three (³)
  • &acute; – Acute accent (´)
  • &micro; – Micro sign (µ)
  • &para; – Paragraph sign (¶)
  • &middot; – Middle dot (·)
  • &cedil; – Cedilla (¸)
  • &sup1; – Superscript one (¹)
  • &ordm; – Masculine ordinal indicator (º)
  • &raquo; – Right-pointing double angle quotation mark (»)
  • &frac14; – Fraction one-quarter (¼)
  • &frac12; – Fraction one-half (½)
  • &frac34; – Fraction three-quarters (¾)
  • &iquest; – Inverted question mark (¿)

General Punctuation:

  • &ndash; – En dash (–)
  • &mdash; – Em dash (—)
  • &lsquo; – Left single quotation mark (‘)
  • &rsquo; – Right single quotation mark (’)
  • &sbquo; – Single low-9 quotation mark (‚)
  • &ldquo; – Left double quotation mark (“)
  • &rdquo; – Right double quotation mark (”)
  • &bdquo; – Double low-9 quotation mark („)
  • &dagger; – Dagger (†)
  • &Dagger; – Double dagger (‡)
  • &hellip; – Horizontal ellipsis (…)
  • &permil; – Per mille sign (‰)
  • &lsaquo; – Single left-pointing angle quotation mark (‹)
  • &rsaquo; – Single right-pointing angle quotation mark (›)

Mathematical Operators:

  • &times; – Multiplication sign (×)
  • &divide; – Division sign (÷)
  • &plusmn; – Plus-minus sign (±)
  • &minus; – Minus sign (−)
  • &pm; – Plus-or-minus sign (∓)
  • &radic; – Square root (√)
  • &infin; – Infinity (∞)
  • &ang; – Angle (∠)
  • &prop; – Proportional to (∝)
  • &ne; – Not equal to (≠)
  • &equiv; – Identical to (≡)
  • &le; – Less than or equal to (≤)
  • &ge; – Greater than or equal to (≥)
  • &there4; – Therefore (∴)
  • &forall; – For all (∀)
  • &part; – Partial differential (∂)
  • &exist; – There exists (∃)
  • &empty; – Empty set (∅)
  • &nabla; – Nabla (∇)
  • &isin; – Element of (∈)
  • &notin; – Not an element of (∉)
  • &ni; – Contains as member (∋)
  • &prod; – N-ary product (∏)
  • &sum; – N-ary summation (∑)
  • &minus; – Minus sign (−)
  • &lowast; – Asterisk operator (∗)
  • &radic; – Square root (√)
  • &prop; – Proportional to (∝)
  • &infin; – Infinity (∞)
  • &ang; – Angle (∠)
  • &and; – Logical and (∧)
  • &or; – Logical or (∨)
  • &cap; – Intersection (∩)
  • &cup; – Union (∪)
  • &int; – Integral (∫)
  • &there4; – Therefore (∴)
  • &sim; – Tilde operator (∼)
  • &cong; – Congruent to (≅)
  • &asymp; – Almost equal to (≈)
  • &ne; – Not equal to (≠)
  • &equiv; – Identical to (≡)
  • &le; – Less than or equal to (≤)
  • &ge; – Greater than or equal to (≥)
  • &sub; – Subset of (⊂)
  • &sup; – Superset of (⊃)
  • &nsub; – Not a subset of (⊄)
  • &sube; – Subset of or equal to (⊆)
  • &supe; – Superset of or equal to (⊇)
  • &oplus; – Circled plus (⊕)
  • &otimes; – Circled times (⊗)
  • &perp; – Up tack (⊥)
  • &sdot; – Dot operator (⋅)
  • &lceil; – Left ceiling (⌈)
  • &rceil; – Right ceiling (⌉)
  • &lfloor; – Left floor (⌊)
  • &rfloor; – Right floor (⌋)
  • &lang; – Left-pointing angle bracket (⟨)
  • &rang; – Right-pointing angle bracket (⟩)

Miscellaneous Symbols:

  • &loz; – Lozenge (◊)
  • &spades; – Black spade suit (♠)
  • &clubs; – Black club suit (♣)
  • &hearts; – Black heart suit (♥)
  • &diams; – Black diamond suit (♦)

This is not a full list; HTML5 has many more character entities. You can express characters with numeric references (e.g., &#169; for ©).

For more examples visit – describing-character-entities-with-immediate-solution

Scroll to Top