Hey Guys,
I want to convert a character to it's bit representation.
For eg:
If i have the char 'J' then it's bit representation is '01001010'.
Pleae tell how??

Integer.toBinaryString((int) 'J')

See the API docs.

And don't forget to left pad it with zeroes, as it will only produce a String as long as it needs to be, rather than the full 8 bits. I.E. if the "full" bit string should be "0000101" this will only produce "101". Or, if the bit string should be "00110010" it will produce "110010".

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.