Skip to content

Instantly share code, notes, and snippets.

@mynameiskreang
Created February 20, 2022 17:14
Show Gist options
  • Select an option

  • Save mynameiskreang/5307cb407e8ecd36d3a22a3be336adb5 to your computer and use it in GitHub Desktop.

Select an option

Save mynameiskreang/5307cb407e8ecd36d3a22a3be336adb5 to your computer and use it in GitHub Desktop.
Decode Chat Facebook
function decodeChatFacebook(input) {
let d = new TextDecoder;
let uint8 = input.split('').map(m => m.charCodeAt());
return d.decode(new Uint8Array(uint8));
}
let sample = "Kreang \u00e0\u00b9\u0080\u00e0\u00b8\u0081\u00e0\u00b8\u00b5\u00e0\u00b8\u00a2\u00e0\u00b8\u0087";
console.log(decodeChatFacebook(sample));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment