I need to output a symbol using variable that contains code of that symbol.
I already understood that in my code example bash thinks that i'm giving it a string. So according to specificator it outputs "4".
symbolValue=41
printf '%c' $symbolValue
I expect outputing of "A" symbol in fixed code. Please help me with it.