web-dev-qa-db-fra.com

comment convertir du code ascii en caractère en javascript

comment convertir du code ascii en caractère en javascript

33
Deepa
String.fromCharCode(ascii_code)
79
Darko Kenda

Si vous voulez convertir codes Ascii en caractères vous pouvez utiliser:

String.fromCharCode(codes);

Par exemple:

String.fromCharCode(65,66,67);

which returns = "ABC"
3
Saleheen Noor