I\'m using Base64 encoding for encoding user id field in Java.
String abc = new String(Base64.encodeBase64(\"Actualuseridfield\"));
I want to k
You will not see any commas, colons, or double quotes in a Base64 encoded string. You will see equals signs since they're used to pad the ending content.