PROGRAMMING:ASCII code
Given a binary number $$x $$, please output $$x $$as the character represented by the $$ASCII $$code.
###Input format:
In the first line, give a positive integer $$t $($$1 < = T < = 20 $$) to represent the common $$t $$group input data.
Next, $$t $$lines, each line gives a binary number, $$x $$, representing a $$ASCII $$code. The input data guarantees that $$x $$is a valid $$ASCII $$code.
###Output format:
For each set of input data, output a character $$C $$in one line, which is the character represented by $$x $.
###Input example:
```in
five
one hundred thousand and one
one hundred thousand and ten
one hundred thousand and eleven
one hundred thousand and one hundred
one hundred thousand one hundred and one
```
###Output example:
```out
!
"
#
$
%
```
answer:If there is no answer, please comment
###Input format:
In the first line, give a positive integer $$t $($$1 < = T < = 20 $$) to represent the common $$t $$group input data.
Next, $$t $$lines, each line gives a binary number, $$x $$, representing a $$ASCII $$code. The input data guarantees that $$x $$is a valid $$ASCII $$code.
###Output format:
For each set of input data, output a character $$C $$in one line, which is the character represented by $$x $.
###Input example:
```in
five
one hundred thousand and one
one hundred thousand and ten
one hundred thousand and eleven
one hundred thousand and one hundred
one hundred thousand one hundred and one
```
###Output example:
```out
!
"
#
$
%
```
answer:If there is no answer, please comment