_e in wordpress +

You can write like below:

<?php /* translators: %s: home page URL */
printf( __( 'We are sorry, but there is nothing here! You might even call this a 404 Page Not Found error message, which is exactly what it is. The page you are looking for either does not exist, or the URL you followed or typed to get to it is incorrect in some way. Go back to <a href="https://wordpress.stackexchange.com/questions/217792/%s">Home Page</a>.', 'tuts'), get_bloginfo('url') ); ?>

Note as we’re using printf(), that’s why we’re not using _e(), but we’re using __().

Reference: printf() – PHP