5.1k views
5 votes
The character that does not need to be written in ampersand notation in html is the plus sign (+). The plus sign can be used directly in html without needing to be encoded in ampersand notation. However, the other three characters (÷, ≥, √) are not part of the standard html character set, and to display them correctly, you should use their corresponding html entity codes, such as ÷ for ÷, ≥ for ≥, and √ for √.

User Adswebwork
by
8.3k points

1 Answer

3 votes

Final answer:

The plus sign does not need to be written in ampersand notation in HTML, but other special characters like ÷, ≥, and √ should be encoded using HTML entity codes.

Step-by-step explanation:

In HTML, the plus sign (+) does not need to be written in ampersand notation because it is part of the standard HTML character set. The plus sign does not need to be written in ampersand notation in HTML, but other special characters like ÷, ≥, and √ should be encoded using HTML entity codes.

This means that you can use the plus sign directly in HTML without needing to encode it. However, the characters ÷, ≥, and √ are not part of the standard HTML character set, so to display them correctly, you should use their corresponding HTML entity codes, such as ÷ for ÷, ≥ for ≥, and √ for √.

User SJDS
by
8.4k points