Adjust utf8toUnicode description

Martin Vierula 2023-07-11 13:15:59 -07:00
parent 1f61257635
commit 6537ab0528
No known key found for this signature in database
GPG Key ID: F2FC4E45883BCBA4
3 changed files with 3 additions and 3 deletions

@ -170,7 +170,7 @@ Like urlDecode, but with support for the Microsoft-specific %u encoding. If the
Encodes input string using URL encoding.
== utf8toUnicode ==
Converts all UTF-8 characters sequences to Unicode. This help input normalization specially for non-english languages minimizing false-positives and false-negatives. (available with 2.7.0)
Converts all UTF-8 character sequences to Unicode (using '%uHHHH' format). This help input normalization specially for non-english languages minimizing false-positives and false-negatives.
== sha1 ==
Calculates a SHA1 hash from the input string. The computed hash is in a raw binary form and may need encoded into text to be printed (or logged). Hash functions are commonly used in combination with hexEncode (for example, t:sha1,t:hexEncode).

@ -2993,7 +2993,7 @@ Like urlDecode, but with support for the Microsoft-specific %u encoding. If the
Encodes input string using URL encoding.
== utf8toUnicode ==
Converts all UTF-8 characters sequences to Unicode. This help input normalization specially for non-english languages minimizing false-positives and false-negatives. (available with 2.7.0)
Converts all UTF-8 character sequences to Unicode (using '%uHHHH' format). This help input normalization specially for non-english languages minimizing false-positives and false-negatives.
== sha1 ==
Calculates a SHA1 hash from the input string. The computed hash is in a raw binary form and may need encoded into text to be printed (or logged). Hash functions are commonly used in combination with hexEncode (for example, t:sha1,t:hexEncode).

@ -1953,7 +1953,7 @@ Like urlDecode, but with support for the Microsoft-specific %u encoding. If the
Encodes input string using URL encoding.
== utf8toUnicode ==
Converts all UTF-8 characters sequences to Unicode. This help input normalization specially for non-english languages minimizing false-positives and false-negatives. (available with 2.7.0)
Converts all UTF-8 character sequences to Unicode (using '%uHHHH' format). This help input normalization specially for non-english languages minimizing false-positives and false-negatives.
== sha1 ==
Calculates a SHA1 hash from the input string. The computed hash is in a raw binary form and may need encoded into text to be printed (or logged). Hash functions are commonly used in combination with hexEncode (for example, t:sha1,t:hexEncode).