_e in wordpress

PHP
/*
If you want to echo the translated string, then you will be using _e and when you just want to have the translated string, then you will be using __.
*/

_e('this is a message', 'twentyfourteen');

echo __('this is a message', 'twentyfourteen');

Source

Also in PHP: