Forum Moderators: phranque
UTF-8 is a variable length (1-4 bytes per character) character encoding.
from a programming point of view, it's more work to handle the multi-byte and/or variable length cases.
in some cases UTF-8 can consume more space than other possible encodings.
there could also be database compatibility/conversion issues.
if 100% of your website can be displayed in Latin1, it's extra work for no apparent gain.
Also, I can't think of many examples where a website programmer would need to go down to byte level programming? For the vast majority of web developers, I see UTF-8 a more future proof character set for their websites and databases.
Is the argument that UTF-8 encoding uses more space still an issue in 2007?
Also, I can't think of many examples where a website programmer would need to go down to byte level programming?
For the vast majority of web developers, I see UTF-8 a more future proof character set for their websites and databases.
Does anyone know what impact switching from latin1 to UTF-8 will have on the search engines etc?