fork download
  1. <?php
  2.  
  3.  
  4. $text = 'abc 123 _';
  5. $hex= bin2hex($text);
  6. $hex = preg_replace('/.{2}/', '$0 ', $hex); // разобьем пробелами для удобства
  7. echo $hex;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
61 62 63 20 20 20 31 32 33 20 20 20 5f