Node.js examples for String:Unicode
String UTF Encode and Decode
String.utf8Encode = function(src) { return unescape( encodeURIComponent( src ) ); }; String.utf8Decode = function(src) { return decodeURIComponent( escape( src ) ); };