คุณจะหาค่า ASCII ของตัวละครได้อย่างไร?

คุณจะหาค่า ASCII ของตัวละครได้อย่างไร?

'ASCII' ย่อมาจาก 'American Standard Code for Information Interchange' รหัส ASCII แสดงข้อความในคอมพิวเตอร์ อุปกรณ์โทรคมนาคม และอุปกรณ์อื่นๆ ASCII แปลงข้อมูลเป็นรูปแบบดิจิทัลมาตรฐานที่ช่วยให้คอมพิวเตอร์สามารถประมวลผลข้อมูล จัดเก็บข้อมูล และสื่อสารกับคอมพิวเตอร์เครื่องอื่นได้อย่างมีประสิทธิภาพ





ในบทความนี้ คุณจะได้เรียนรู้วิธีค้นหาค่า ASCII ของอักขระโดยใช้ C++, Python, JavaScript และ C





วิธีตรวจสอบการ์ดจอที่ฉันมี windows 10

คำชี้แจงปัญหา

คุณได้รับอักขระและคุณต้องพิมพ์ค่า ASCII ของอักขระนั้น





ตัวอย่าง 1 : ให้ตัวละครที่กำหนดเป็น 'M'

ค่า ASCII ของ 'M' คือ 77



ดังนั้นเอาต์พุตคือ 77

ตัวอย่าง 2 : ให้อักขระที่กำหนดเป็น 'U'





ค่า ASCII ของ 'U' คือ 85

ดังนั้นเอาต์พุตคือ 85





ตัวอย่างที่ 3 : ให้ตัวละครที่กำหนดเป็น 'O'

ค่า ASCII ของ 'O' คือ 79

ดังนั้นเอาต์พุตคือ 79

หากต้องการดูตาราง ASCII ฉบับสมบูรณ์ สามารถดูได้ที่ เว็บไซต์ของ asciitable .

ที่เกี่ยวข้อง: ข้อความ ASCII และ Unicode ต่างกันอย่างไร

โปรแกรม C++ เพื่อค้นหาค่า ASCII ของตัวละคร

คุณสามารถหาค่า ASCII ของอักขระได้โดยใช้ int() ใน C++ ด้านล่างนี้คือโปรแกรม C++ สำหรับพิมพ์ค่า ASCII ของอักขระ:

ลบไฟล์อัพเดท windows windows 8
// C++ program to find the ASCII value of a character
#include
using namespace std;
int main()
{
char ch1 = 'M';
char ch2 = 'U';
char ch3 = 'O';
char ch4 = 'm';
char ch5 = 'a';
char ch6 = 'k';
char ch7 = 'e';
char ch8 = 'u';
char ch9 = 's';
char ch10 = 'e';
char ch11 = 'o';
char ch12 = 'f';
// int() is used to convert character to its ASCII value
cout << 'ASCII value of ' << ch1 << ' is ' << int(ch1) << endl;
cout << 'ASCII value of ' << ch2 << ' is ' << int(ch2) << endl;
cout << 'ASCII value of ' << ch3 << ' is ' << int(ch3) << endl;
cout << 'ASCII value of ' << ch4 << ' is ' << int(ch4) << endl;
cout << 'ASCII value of ' << ch5 << ' is ' << int(ch5) << endl;
cout << 'ASCII value of ' << ch6 << ' is ' << int(ch6) << endl;
cout << 'ASCII value of ' << ch7 << ' is ' << int(ch7) << endl;
cout << 'ASCII value of ' << ch8 << ' is ' << int(ch8) << endl;
cout << 'ASCII value of ' << ch9 << ' is ' << int(ch9) << endl;
cout << 'ASCII value of ' << ch10 << ' is ' << int(ch10) << endl;
cout << 'ASCII value of ' << ch11 << ' is ' << int(ch11) << endl;
cout << 'ASCII value of ' << ch12 << ' is ' << int(ch12) << endl;

return 0;
}

เอาท์พุท:

ASCII value of M is 77
ASCII value of U is 85
ASCII value of O is 79
ASCII value of m is 109
ASCII value of a is 97
ASCII value of k is 107
ASCII value of e is 101
ASCII value of u is 117
ASCII value of s is 115
ASCII value of e is 101
ASCII value of o is 111
ASCII value of f is 102

ที่เกี่ยวข้อง: ข้อความ ASCII คืออะไรและใช้อย่างไร?

โปรแกรม Python เพื่อค้นหาค่า ASCII ของตัวละคร

คุณสามารถหาค่า ASCII ของอักขระได้โดยใช้ คำ() ในไพทอน ด้านล่างนี้คือโปรแกรม Python สำหรับพิมพ์ค่า ASCII ของอักขระ:

# Python program to find the ASCII value of a character
ch1 = 'M'
ch2 = 'U'
ch3 = 'O'
ch4 = 'm'
ch5 = 'a'
ch6 = 'k'
ch7 = 'e'
ch8 = 'u'
ch9 = 's'
ch10 = 'e'
ch11 = 'o'
ch12 = 'f'
# ord() is used to convert character to its ASCII value
print('ASCII value of', ch1, 'is', ord(ch1))
print('ASCII value of', ch2, 'is', ord(ch2))
print('ASCII value of', ch3, 'is', ord(ch3))
print('ASCII value of', ch4, 'is', ord(ch4))
print('ASCII value of', ch5, 'is', ord(ch5))
print('ASCII value of', ch6, 'is', ord(ch6))
print('ASCII value of', ch7, 'is', ord(ch7))
print('ASCII value of', ch8, 'is', ord(ch8))
print('ASCII value of', ch9, 'is', ord(ch9))
print('ASCII value of', ch10, 'is', ord(ch10))
print('ASCII value of', ch11, 'is', ord(ch11))
print('ASCII value of', ch12, 'is', ord(ch12))

เอาท์พุท:

ASCII value of M is 77
ASCII value of U is 85
ASCII value of O is 79
ASCII value of m is 109
ASCII value of a is 97
ASCII value of k is 107
ASCII value of e is 101
ASCII value of u is 117
ASCII value of s is 115
ASCII value of e is 101
ASCII value of o is 111
ASCII value of f is 102

โปรแกรม JavaScript เพื่อค้นหาค่า ASCII ของตัวละคร

คุณสามารถหาค่า ASCII ของอักขระได้โดยใช้ string.charCodeAt(0) ในจาวาสคริปต์ ด้านล่างนี้คือโปรแกรม JavaScript เพื่อพิมพ์ค่า ASCII ของอักขระ:

const ch1 = 'M';
const ch2 = 'U';
const ch3 = 'O';
const ch4 = 'm';
const ch5 = 'a';
const ch6 = 'k';
const ch7 = 'e';
const ch8 = 'u';
const ch9 = 's';
const ch10 = 'e';
const ch11 = 'o';
const ch12 = 'f';

// string.charCodeAt(0) is used to convert character to its ASCII value
document.write('ASCII value of ' + ch1+ ' is ' + ch1.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch2+ ' is ' + ch2.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch3+ ' is ' + ch3.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch4+ ' is ' + ch4.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch5+ ' is ' + ch5.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch6+ ' is ' + ch6.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch7+ ' is ' + ch7.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch8+ ' is ' + ch8.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch9+ ' is ' + ch9.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch10+ ' is ' + ch10.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch11+ ' is ' + ch11.charCodeAt(0) + '
');
document.write('ASCII value of ' + ch12+ ' is ' + ch12.charCodeAt(0) + '
');

เอาท์พุท:

ASCII value of M is 77
ASCII value of U is 85
ASCII value of O is 79
ASCII value of m is 109
ASCII value of a is 97
ASCII value of k is 107
ASCII value of e is 101
ASCII value of u is 117
ASCII value of s is 115
ASCII value of e is 101
ASCII value of o is 111
ASCII value of f is 102

ที่เกี่ยวข้อง: วิธีสร้างเครื่องคิดเลขอย่างง่ายโดยใช้ HTML, CSS และ JavaScript

โปรแกรม C เพื่อค้นหาค่า ASCII ของตัวละคร

คุณสามารถหาค่า ASCII ของอักขระได้โดยใช้ ตัวระบุรูปแบบ ใน C. ด้านล่างเป็นโปรแกรม C เพื่อพิมพ์ค่า ASCII ของอักขระ:

// C program to find the ASCII value of a character
#include
int main()
{
char ch1 = 'M';
char ch2 = 'U';
char ch3 = 'O';
char ch4 = 'm';
char ch5 = 'a';
char ch6 = 'k';
char ch7 = 'e';
char ch8 = 'u';
char ch9 = 's';
char ch10 = 'e';
char ch11 = 'o';
char ch12 = 'f';
// You can print the ASCII value of a character in C using format specifier
// %d displays the integer ASCII value of a character
// %c displays the character itself
printf('ASCII value of %c is %d ⁠n', ch1, ch1);
printf('ASCII value of %c is %d ⁠n', ch2, ch2);
printf('ASCII value of %c is %d ⁠n', ch3, ch3);
printf('ASCII value of %c is %d ⁠n', ch4, ch4);
printf('ASCII value of %c is %d ⁠n', ch5, ch5);
printf('ASCII value of %c is %d ⁠n', ch6, ch6);
printf('ASCII value of %c is %d ⁠n', ch7, ch7);
printf('ASCII value of %c is %d ⁠n', ch8, ch8);
printf('ASCII value of %c is %d ⁠n', ch9, ch9);
printf('ASCII value of %c is %d ⁠n', ch10, ch10);
printf('ASCII value of %c is %d ⁠n', ch11, ch11);
printf('ASCII value of %c is %d ⁠n', ch12, ch12);
return 0;
}

เอาท์พุท:

ASCII value of M is 77
ASCII value of U is 85
ASCII value of O is 79
ASCII value of m is 109
ASCII value of a is 97
ASCII value of k is 107
ASCII value of e is 101
ASCII value of u is 117
ASCII value of s is 115
ASCII value of e is 101
ASCII value of o is 111
ASCII value of f is 102

สร้างทักษะการเขียนโปรแกรมของคุณในวิธีที่สนุกและใช้ได้จริง

การเขียนโปรแกรมเป็นเรื่องสนุกเมื่อคุณเก่งขึ้นและรู้ว่าคุณกำลังทำอะไรอยู่ คุณสามารถเรียนรู้การเขียนโปรแกรมได้หลายวิธี แต่วิธีการลงมือปฏิบัติในการเรียนรู้การเขียนโปรแกรมสามารถช่วยให้คุณเรียนรู้ได้เร็วขึ้นและเก็บข้อมูลไว้เป็นระยะเวลานานขึ้น

การสร้างเกมการเข้ารหัสเป็นหนึ่งในวิธีที่ดีที่สุดในการได้รับประสบการณ์จริงในขณะที่สนุกสนานไปพร้อม ๆ กัน

แบ่งปัน แบ่งปัน ทวีต อีเมล 9 เกมเข้ารหัสที่ดีที่สุดเพื่อสร้างทักษะการเขียนโปรแกรมของคุณ

เกมการเข้ารหัสช่วยให้คุณเรียนรู้ได้เร็วขึ้นด้วยการฝึกฝนและประสบการณ์จริง นอกจากนี้ยังเป็นวิธีที่สนุกในการทดสอบทักษะการเขียนโปรแกรมของคุณ!

อ่านต่อไป
หัวข้อที่เกี่ยวข้อง
  • การเขียนโปรแกรม
  • JavaScript
  • Python
  • บทเรียนการเข้ารหัส
  • การเขียนโปรแกรม C
เกี่ยวกับผู้เขียน ยุวราช จันทรา(60 บทความที่ตีพิมพ์)

Yuvraj เป็นนักศึกษาระดับปริญญาตรีสาขาวิทยาการคอมพิวเตอร์ที่มหาวิทยาลัยเดลี ประเทศอินเดีย เขาหลงใหลเกี่ยวกับ Full Stack Web Development เมื่อไม่ได้เขียน เขากำลังสำรวจความลึกของเทคโนโลยีต่างๆ

เพิ่มเติมจาก Yuvraj Chandra

สมัครรับจดหมายข่าวของเรา

เข้าร่วมจดหมายข่าวของเราสำหรับเคล็ดลับทางเทคนิค บทวิจารณ์ eBook ฟรี และดีลพิเศษ!

คลิกที่นี่เพื่อสมัครสมาชิก