ob_get_clean(); doesn’t return $value in shortcode?

You don’t see anything because you’re assigning the content to $out but then you don’t do anything with that value. Shortcodes have to return their content or you won’t see any output.

$out = ob_get_clean();
return $out;

or just

return ob_get_clean();