bash ascii

hi guys
In my bash script I need to use ascii characters such as SYN(22) and US(31).
How do I echo them?

Use printf instead...

Could you give me an example?

SYN(22)

# echo -en "\x16"

US(31)

# echo -en "\x1F"