
KarthikP.51024 (Customer) asked a question.
We provision users from Okta and AD and have mapping done for all user attributes under okta profile editor. We also need to populate userParameters AD attribute which is uniCode string. How to populate this attribute through okta? Any pointers?

Okta has support of unicode and they are treated similarly as normal string attribute. There is no need of treating unicode string differently than string as for as what I remember. Could you please let me know the specific attribute which you are trying to include ?
This is for AD attribute "userParameters". I need to pass unicode string from okta to ad for this attribute. Pls provide examples how expression will look.
Are you able to map and set any value for this attribute ? Have you tried to pass as is like normal string parameter. If it's not taking that as is then try to convert that to UTF8 -
String unicode = new String("A" + "\u00ea" + "\u00f1"
+ "\u00fc" + "C");
System.out.println("unicode = " + unicode);
byte[] utf8Bytes = unicode.getBytes("UTF8");
byte[] defaultBytes = unicode.getBytes();
String unicodeUTF8 = new String(utf8Bytes, "UTF8");