// this file contains ill-formed UTF-8 sequence // please edit it with 'vim -b' // reference: The Unicode Standard, Version 10.0, ch3.9, Table 3-8 #include int main() { wchar_t s[] = L"añ€€á€Âb€c€¿d"; wchar_t *p; for (p = s; *p; p++) printf("%04X ", (unsigned) *p); printf("\n"); return 0; }