Meet the team behind ShepHertz Platform
Making a difference in the world together
People whose belief drives us forward
Enterprises & Developers from across the world
Access the ShepHertz Newsroom
800+ APIs. 25+ Modules. 16 SDKs.Real-time Actionable Analytics. 1 Platform.
Acquire. Engage. Retain. Convert.
Comprehensive Solution to Securely Expose Protected Resources as APIs
Real Time & Turn Based MultiplayerGaming Platform With Game Mechanics.
Develop > Deploy > launch > Scale > Monitor
Continuous Integration & Delivery
Customers Want A 360 °Omni-Channel Retail Experience.
Seamless & ConnectedOmni-Channel Experience Delivered.
Plethora of Games are LaunchedEvery Day. Don't Let Yours Die.
Leverage User Data to DeliverPersonalized Content Across Channels
Inspire Wanderlust in theCustomers with Omni-Channel Experience
800+ APIs. 25+ Modules. 16 SDKs. Real-time Actionable Analytics. 1 Platform.
Real Time & Turn Based Multiplayer Gaming Platform With Game Mechanics.
Forum
Hello Tufan,
You can save your non english data in base64 encoded string and then decode back after fetching it. In all our SDK, we have Base64 class and it has method to encode and decode string. Let me know on which SDK you are, I will give you the exact snippet to do this.
This is just a workaround to save non english data, however it will be supported directly in our SDK soon.Kindly find the below code snippet for encoding/decoding the non english character:
var encoded:Base64Encoder = new Base64Encoder(); encoded.encodeUTFBytes("tesrinievvel"); var decode:Base64Decoder = new Base64Decoder(); decode.decode(encoded.toString()); var decodeString:String = decode.toByteArray().toString() trace(decodeString)
var encoded:Base64Encoder = new Base64Encoder();
encoded.encodeUTFBytes("tesrinievvel");
var decode:Base64Decoder = new Base64Decoder();
decode.decode(encoded.toString());
var decodeString:String = decode.toByteArray().toString()
trace(decodeString)
Let us know if it helps.