Does a normal text contains U+000B Unicode character?

0
Hi All,   Does a normal Text contains U+000B Unicode character? Because  I inputted text example " Test" but its detecting the U+000B Unicode character   Thank you.
asked
1 answers
1

The Unicode character U+000B represents the "Vertical Tab" (VT) control character. If it's causing issues, it's often safe to remove or replace it.

 

replace(yourStringAttributeOrVariable, '\u000B', '')

answered