Hi i want to convert character i.e. string to hexa decimal value using php function please suggest the function or process to convert it by program.
Thanks in advance.
[Merged with this thread. -- MOD]
Please tell the function to convert char to ascii value in php
You could convert a character with:
$hexValue = dechex(ord($character));
Thanks