There are the four escape sequences.
< < (Less than sign)
> > (Greater than sign)
& & (Ampersand sign)
" " (Double quote)
Each of these special characters has a logical name, for example "lt" for
the less than sign. To use these characters, start with an ampersand, then the
name (lt, gt, amp, or quot), and end it with a semicolon. An ampersand written
in HTML would be &Be sure to end the sequence with a semicolon, because if you do not you will not get the desired result. An ampersand written in HTML without the semicolon will look like this &. An ampersand properly written in HTML with the semicolon at the end will look like this &
I understand these special characters, but what about the ISO Latin-1 special characters?