@FOTISPAN

Drupal9, how to print html used in a plain text field

Sometimes you need a field (i.e for a title) so users can add a <br> tag to break the title into 2, 3 lines.

Formatted Text fields works fine, but on the admin pages they need much more "space" than a simple text field.

Adding a plain text field may be a good alternative.

In order to print the html tags on front you should use the following:

{{ node.field_NAME.0.value|raw }}

!!! Security Note: Make sure to give edit / add access  to this fielld only to trusted users.