How to add text to the start of all comments?

You can try the comment_text filter:

/**
 * Prepend text to each comment content.
 */

add_filter( 'comment_text', function( $comment_text )
{
    $text="Some text";
    return $text . $comment_text;
});

if you’re displaying the comment text with:

<?php comment_text(); ?>