in reply to Re^5: Encoding of emoji character
in thread Encoding of emoji character

Thank you, this appears to have fixed it! Using the following code the emoji is passed and displayed correctly on the websocket client.
$text = encode( 'iso-8859-1', $text ); $text = decode( 'UTF-8', $text ); $conn->send_utf8( $text );