Is there a way to get the bit array of an ASCII character without having to create a dictionary or list with the corresponding rows? only for the letters of the English alphabet, A-Z

example:
input : "A"
A -> 01000001 -> [[0, 0, 1, 1, 1, 0, 0], ... ]
output: [[0, 0, 1, 1, 1, 0, 0], ... ]
EDIT:

This is what I am looking for, an array with the values to show the figure of the character "A" for example:
# Press Ctrl+f "1" to see this better
[
[0,0,1,1,1,0,0],
[0,1,0,0,0,1,0],
[0,1,0,0,0,1,0],
[0,1,0,0,0,1,0],
[0,1,1,1,1,1,0],
[0,1,0,0,0,1,0],
[0,1,0,0,0,1,0]
]