cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Hexadecimal to binary conversion

Parex122334
New Contributor II

Please provide me a solution to convert hexadecimal data into binary

1 ACCEPTED SOLUTION

SpiroTaleski
Valued Contributor

@Parex122334 

Try below: 

 

parseInt(<hex_data>,16).toString(2)

 

Just replace <hex_data> with the actual hexadecimal data.

View solution in original post

2 REPLIES 2

SpiroTaleski
Valued Contributor

@Parex122334 

Try below: 

 

parseInt(<hex_data>,16).toString(2)

 

Just replace <hex_data> with the actual hexadecimal data.

Parex122334
New Contributor II

Thanks @SpiroTaleski ,Its working.Thanks a lot !!