Created: 2022-08-21
Tags: #fleeting
Using this symbols below will cause errors as this are part of HTML syntax itself
< > " ' &
To print those symbols above as a text, use Character Reference or Special Characters
< -> <
> -> >
" -> "
' -> '
& -> &
Special Characters are easy to identify as it follows a pattern:
& and ends with ;lt in < means less thanNote:
You don't need to use entity references for any other symbols,
as modern browsers will handle the actual symbols just fine as long as your HTML's character encoding is set to UTF-8.