Antonio Gallardo wrote:


BTW, Spanish and Portuguese characters(for example ç,à,á,ñ ) aren't supported by utf-8.

UTF-16 values are:

ç = 00e7
à = 00e0
á = 00e1
ñ = 00f1

For UTF-8 there would be some multibyte representations of them because they are above 0080.
Its detailed by this page: http://www.unicode.org/reports/tr26/

The UTF-8 pairs would be:

ç = 0xc3, 0xa7
à = 0xc3, 0xa0
á = 0xc3, 0xa1
ñ = 0xc3, 0xb1


Reply via email to