CSS Entities


If you use CSS to display any of these characters in HTML, you can use the CSS entity found in the table below.

Example

<style>
h2:after {
  content: ' \00A7';
}
</style>

All

elements will be displayed with this character at the end:

I will display ยง

Example -