APL/APL1.1/SCR1.1/TP03/print_unicode_char.c

8 lines
152 B
C
Raw Normal View History

2021-10-12 15:08:41 +02:00
#include <stdio.h>
#include <stdlib.h>
int main(void){
read -p "Type an HEX UNICODE: " x; echo -e "Corresponding CHAR: \U$x";
return EXIT_SUCCESS;
}