in reply to UTF-8 in LDAP
For example, the single character "latin small letter c with caron" (U+010D, č) could also be rendered as a two character sequence: "latin small letter c" (U+0063) followed by "combining caron" (U+030C). This latter form is considered "unnormalized", and is generally frowned upon, but it does show up in places where it might not be expected. If that's the case in your data, it may be that LDAP is ignoring the characters that happen to be combining (non-spacing) marks. (Whether such behavior is warranted, I can't say.)
If you can, it might help to inspect the input strings in more detail, to see what the actual character sequence is. If it's unnormalized, try using Unicode::Normalize to change that, then see what LDAP does.
You might also try this script I posted a while back, which can show you exactly what the character sequences are in your data: tlu -- TransLiterate Unicode.
|
|---|