About custom field render

I now have a custom data,
‘manga,toon,high_quality’, it is worth noting that this data is dynamic,
I want him to render the front end again

<li>manga</li>/<li>toon</li>/<li>high_quality</li>

,

How do I do that in bricks?

If it’s a custom field, then you can always create the structure using a code widget.
But to help, we need more information

example

<?php

$data = get_field('moi_field_name');
$items = explode(',', $data);

echo '<ul>';
foreach ($items as $item) {
    echo '<li>' . $item . '</li>'; 
}
echo '</ul>';
?>

Thank you for your answer,
Can this be done through bricks loop query?
Data :[manga,toon,high_quality]

Yes. If create custom loop query