How To Convert Binary To Hex And Hex To Binary In PHP

Hello devs,

In this tutorial, I will show you how to convert a binary to hexadecimal in PHP and a hexadecimal to binary in PHP. There is a very small and awesome function to create this hexadecimal to binary and binary to hexadecimal and that is bin2hex and the other is hex2bin. To convert binary to hexadecimal, you can use this code:

bin2hex("string goes here");

 

To convert hexadecimal to binary, you can use:

hex2bin('72345678977320616c6c20796f75206e656564');

 

Read also: Laravel 10 Multiple WithCount Same Relationship Example

 

Hope it can help you.

 

#php