This might be a rookie question, but I've pondered it and can't find a definitive answer.
What should you use when coding out a special character in your website? HTML Entity Decimal, HTML Entity Hexadecimal, or Unicode Code Point. What are the differences and Best to use?
Example: ō
U+014D
ō
ō
%C5%8D
In general you should just write the literal character. If you write a web page in Japanese you don't convert every character to an HTML entity...
If you have difficulty typing the character, it may make sense to use a named entity, like Ψ
. As long as you aren't making a whole document into entities it doesn't matter if you have a few characters as entities rather than literal characters.
Also two of your four options are not applicable: