Created
February 20, 2022 17:14
-
-
Save mynameiskreang/5307cb407e8ecd36d3a22a3be336adb5 to your computer and use it in GitHub Desktop.
Decode Chat Facebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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