File: unicode2.c

package info (click to toggle)
chibicc 1.0.23.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,832 kB
  • sloc: ansic: 62,911; sh: 275; makefile: 92
file content (14 lines) | stat: -rwxr-xr-x 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <fcntl.h>
#include <stddef.h>
#include "test.h"

int main(void) {
    printf("\xE2\x98\xA0 \n");
    printf("\U0001F602\n");
    printf("\u2620\n");
    printf("\x09\x65\n");
    printf("\u0965\n");
    printf("%d\n", '\\');
    ASSERT(92, '\\');
    return 0;
}