Format a Boolean on a Form Field?

I have many boolean entries in my Db with the format 0 or 1.

I’d like to display these as Yes or No. Is there a particular formatting I can apply in the display field to do that?

TIA

For example

you can create a valuelist called listYesNo put custom values
No|0
Yes|1

and then you can use this value list in the valuelist properties of your field, each time you need for this kind of boolean field.
(putting the display_type as RADIOS will be more explicit for users)

erdione:
putting the display_type as RADIOS will be more explicit for users

Perfect - actually CHECK is the solution I needed - thanks erdione.