Forum Discussion

Parex122334's avatar
Parex122334
New Contributor III
2 years ago
Solved

Hexadecimal to binary conversion

Please provide me a solution to convert hexadecimal data into binary
  • SpiroTaleski's avatar
    2 years ago

    Parex122334 

    Try below: 

     

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

     

    Just replace <hex_data> with the actual hexadecimal data.