#include <stdio.h>
#include <wchar.h>
#include <string.h>

int main(void) {
	char32_t* str = L"日本語";
	int i;
	for (i = 0; i < wcslen(str); i++) {
        printf("%lc\n", str[i]);
    }
	return 0;
}
