Is a character's ASCII value varies from on language or from one platform to another platform?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Is a character's ASCII value varies from on language or from one platform to another platform??

Is ASCII value is different for every computer language and for every computer platforms like Microsoft or Linux??

11th Nov 2019, 5:44 AM
Devam Kakdiya (Kratos)
Devam Kakdiya (Kratos) - avatar
7 Answers
+ 4
No, it is a STANDARD. You can check the specific values to every charachter from the table here.. https://theasciicode.com.ar/ Good luck ❤😁
11th Nov 2019, 6:03 AM
Baraa AB
Baraa AB - avatar
+ 2
Nowadays it’s an international standard (ISO/IEC 646). If you use ASCII characters from code 0 to 127 you are safe. But if you intend to use extended ASCII (8-Bit) up to code 256, the characters will differ from system to system.
11th Nov 2019, 6:15 AM
Michael
Michael - avatar
+ 2
Devam Kakdiya (Kratos) ASCII means American Standard Code for Information Interchange, is a character encoding standard for electronic communication. And standard is a standard, it does not depend on language
11th Nov 2019, 6:23 AM
Arsenic
Arsenic - avatar
+ 1
No...
11th Nov 2019, 5:56 AM
Rohit Singh
Rohit Singh - avatar
+ 1
No. ASCII are standard in every language and in every embedded systems that are working. There are some SPECIAL values given to every single character which helps them to differ from one another. :)
11th Nov 2019, 5:58 AM
Chirag Kumar
Chirag Kumar - avatar
+ 1
Test and see //js for(i=0;i<128;i++){ console.log(i,String.fromCharCode(i) } python for i in range(128): print(i, chr(i)
12th Nov 2019, 11:13 PM
Logomonic Learning
Logomonic Learning - avatar
0
In the US the ANSI code 146 Æ here in Hungary ĺ
21st Sep 2022, 7:03 AM
Tamás Bókkon
Tamás Bókkon - avatar