Thanks for writing to us.
You can encode the username before saving it. Kindly find the below code snippet for encoding the user name in bytes for saving the user score. The below code snippet will resolve your issue.
String encodedBytes = Base64.encodeBytes("UserName".getBytes());
System.out.println("encodedBytes " + new String(encodedBytes));
Let us know if it helps.