UTF8LENGTH( )

The function treats characters that are coded based on UTF-8 like single-byte characters.

UTF8LENGTH(string)

Returns the number of characters in string.

Examples

UTF8LENGTH('') 					0
UTF8LENGTH('Hello') 				5
UTF8LENGTH('Hello World') 			11
UTF8LENGTH(' Hello World ') 			14