#include #include int main(void) { char *message = "This is a penguin 🐧 and this is a sloth 🦥\n"; printf("%s\n", message); //print 🦥 with Unicode escape sequence or Universal Character Name (UCN) printf("\U0001F9A5\n"); //print with UTF-8 bytes //TODO printf("\xF0\x9F\xA6\xA5\n"); char *s = "🦥\U00005B57"; printf("Strlen of %s is %ld...hmm...\n", s, strlen(s)); // We can use for variable names // Please don't. int 😀 = 10000; printf("😀 = %d\n", 😀); return 0; } // U+1F9A5 // 1 1111 1001 1010 0101 = 17 bits // // 11110000 10011111 10100110 10100101 // F0 9F A6 A5