Single page hook

add_filter('the_content', 'our_modify_page_content');
function our_modify_page_content ($Content)
{
  //Exit if not a single page
  if (!is_page())
    return($Content);

  $Output = '';
  $Output .= '[Inserting at start]<br>';
  $Output .= $Content;
  $Output .= '[Inserting at end]';
  return $Output;
}