Ge data from a particular html tag like p, section, in get_the_content() using php.
// get the content
$content = get_the_content();
// check and retrieve blockquote
if(preg_match('~<blockquote>([\s\S]+?)</blockquote>~', $content, $matches))
// output blockquote
echo $matches[1];