WordPress Version: 6.1
/**
* Displays the feed GUID for the current comment.
*
* @since 2.5.0
*
* @param int|WP_Comment $comment_id Optional comment object or ID. Defaults to global comment object.
*/
function comment_guid($comment_id = null)
{
echo esc_url(get_comment_guid($comment_id));
}