< BACK
Javascript tips, tricks and code snippets
Reverse String.fromCharCode
String.fromCharCode(224)
gives
à
The reverse is obtained thus
'à'.charCodeAt(0)
224
< BACK
String.fromCharCode(224)
gives
à
The reverse is obtained thus
'à'.charCodeAt(0)
224