<?php

$s = 'Hello привет';
$hex = bin2hex($s);
// разбиваем на группы по 2 символа
$hex = chunk_split($hex, 2, ' ');
echo $hex;

