This is hex c4
and dec is 196
When string length is 50
one of my project returning \xc4
If length is 51
then getting hex \xc5
length 55
= \xc9
length 56
= \xca
length 61
= \xcf
length 62
= \xd0
Continuously \xd9
then \xda
to continuously \xdf
then changing xd
to xe
again from \xe0
to \xe9
and \xea
to \xef
How it possible to get length 50
to hex c4
or dec 196
?
I can convert dec to bin and bin to hex using below code:
$binary = decbin(50); //dec to binary
echo dechex(bindec($binary)); //binary to hex