Platforms to show: All Mac Windows Linux Cross-Platform

ConvertUnicodeToCharacterCompositionMBS(text as string) as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
global method String MBS Util Plugin 15.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Converts unicode characters to composed normalization form.
Example
dim s1 as string = ConvertUnicodeToCharacterDecompositionMBS("ä")

MsgBox s1+": "+EncodeHex(s1)
// shows ä: 61CC88

dim s2 as string = ConvertUnicodeToCharacterCompositionMBS("ä")

MsgBox s2+": "+EncodeHex(s2)
// shows ä: C3A4

This function replaces character represented by decomposed representation with the composed representation.

see also
https://en.wikipedia.org/wiki/Unicode_equivalence

Blog Entries

The items on this page are in the following plugins: MBS Util Plugin.


The biggest plugin in space...