APL/APL1.1/SCR1.1/TP03/print_unicode_char.c
2021-11-30 15:07:19 +01:00

8 lines
152 B
C

#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;
}