Need to remove a particular tag from published single post pages

thanks for the response, leymannx. the code of the single page for showing tag/tags is as follow (swift is the theme name) –

    <?php if (has_tag()): ?>
        <div class="tags">
            <?php echo __('Tagged with', 'swift') . '&nbsp;'; ?>
            <h6>
                <?php the_tags('', ' ', ' '); ?>
            </h6>
        </div>