I want to convert character type to binary but not char byte to bit.
I'll show you example.
if char = 'A' but actually it's hex! A = 1010 I have a character type but I want to represent it like hexadecimal.
Of course, I have only character data that can be matched hexadecimal. like 9, 8, A, C, D not 47, U, Y ..
And Can I count size or length of 1 in 1010 ?
If you know how to solve this please let me know thank you!