Welcome!
By “widget title” do you mean in the WordPress widget area, or in in the Page Builder?
Either way WordPress has entered a filter blocking any HTML from being added to this field…..but if you want to disable it, you can just place the following code in your [functions.php] file:
remove_filter( 'widget_title', 'esc_html' );
P.S.
Our Page Builder system works according to the WordPress widget standards, so the code written above will apply to the widget area as well.