Answers for "command to transform to asci code"

0

command to transform to asci code

#First way to convert to ascii code
printf "\x$(printf %x 65)"
#Second way to convert to ascii code
set $(printf %x 65)
printf "\x$1"
#Third way to convert to ascii code
awk 'BEGIN{printf "%c", 65}'
Posted by: Guest on March-31-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language