When I type in the shell ->
$echo $(( 16#FF ))
The output is "255" which is the decimal conversion of the hexadecimal number "0xFF"
But when I try to convert the number "FF" to another base similarly:
$ echo $(( ffb5cd10#FF ))
I get the following error:
"bash: ffb5cd10#FF : syntax error: invalid arithmetic operator (error token is "#FF ")"