7 lines
162 B
C
7 lines
162 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int main(void) {
|
||
|
printf("Unicode : %c%c\n", '\xC3', '\xAE');
|
||
|
printf("Latin 1 : %c\n", '\xEE');
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|