I am proposing to convert my windows-1252 xhtml web pages to utf-8.
I have the following character entities in my coding (all preceded by &#):
39; - apostrophe
9658; - a right pointer
9668; - a left pointer
If I change the chartset and save the pages as utf-8 using my editor:
- the apostrophe remains in as a character entity;
- the pointers are converted to symbols within the code (presumably because the entities are not supported in utf-8?).
Questions:
1) If I understand utf-8 correctly, you don't need to use the entities and can type characters directly into the code. In which case is it safe for me to replace #39 with a typed in apostrophe?
2) Is it correct that the editor has placed the pointer symbols directly into my code and will these be displayed reliably on modern browsers, it seems to be ok? Presumably, I can't revert to the entities anyway, if I use utf-8?
Thanks.