vote up 0 vote down star

Character to value works:

$ printf "%d\n" \'A
65
$

I have two questions, the first one is most important:

  • How do I take 65 and turn it into A?
  • \'A converts an ASCII character to its value using printf. Is the syntax specific to printf or is it used anywhere else in BASH? (Such small strings are hard to Google for.)
flag

In Windows, use ALT+65 to print the ASCII character - unfortunately that won't work using Unix/bash ;) – schnaader May 20 at 21:14

4 Answers

vote up 5 vote down check

http://wooledge.org:8000/BashFAQ/071

link|flag
printf \\$(printf '%03o' 65) ==> A – Kent May 20 at 22:12
vote up 0 vote down

For this kind of conversion, I use perl:

perl -e 'printf "%c\n", 65;'
link|flag
vote up 1 vote down

One option is to directly input the character you're interested in using hex or octal notation:

printf "\x41\n"
printf "\101\n"
link|flag
vote up 0 vote down

printf %x 65 => print hex value from decimal = 41

printf "\x$(printf %x 65) => print character from hex value from decimal = A

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.