Let's say I want to run a query like:
ldaps://ldap.company.com/CN=Richards\, Renée,OU=Blah,DC=company,DC=com?field1,field2,field3?sub?(&(objectClass=user))
I found that I had to percent-encode the é
using Windows-1252 encoding table ( %e9
rather than %C3%A9
). Otherwise, I would get "No such object".
But now I need to query a DN that has a special character that doesn't exist in Windows-1252.
ldaps://ldap.company.com/CN=Richards\, Jūra,OU=Blah,DC=company,DC=com?field1,field2,field3?sub?(&(objectClass=user))
How do I encode the ū
?