8 lines
152 B
C
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;
|
|
}
|