Get Page content by ID using get_page_by_title()

<?php

$page = get_page_by_title( 'home' );
$the_excerpt = $page->post_content;
echo $the_excerpt;

 ?>