code ASCII for Caracter -->> '

I'm a question:

the expresiion 'expr $a +1' use the caracter --> ' (is not shift+ ? !!!)

what is the code ascii for generate this caracter ??????

tank's

See man ascii or ASCII - Wikipedia

Perhaps you mean a backtick ` ASCII 96
The single tic or single quote ' is ASCII 39

With bash and ksh, you can also use the syntax $() :

$(expr $a +1)   # same as `expr $a +1`
Timestamp=$(date +'%Y%m%d%H%M%S')

Jean-Pierre