محول ASCII إلى Hex
تحويل سلاسل ASCII أو نصوص إلى رمز سداسي على الفور. يدعم الفواصل المخصصة، نسخ الناتج، إدخال عينة، وجدول حرف ASCII كامل أدناه.
كيفية تحويل ASCII إلى سداسي عشري؟
- اكتب أو الصق ASCII/نصك في حقل الإدخال.
- اختر فاصل (مسافة، فاصلة، شرطة، أو لا شيء).
- انقر على تحويل للحصول على الناتج السداسي عشري أدناه.
- انسخ أو استخدم الناتج السداسي عشري في أي مكان تريده.
مثال: ASCII إلى سداسي عشري
- المدخل ASCII:
Hello
- الناتج السداسي عشري:
48 65 6C 6C 6F
Hello
→48 65 6C 6C 6F
جدول ASCII
حرف | Hex | Decimal |
---|---|---|
أ | 41 | 65 |
ب | 42 | 66 |
ج | 43 | 67 |
ا | 61 | 97 |
ب | 62 | 98 |
ج | 63 | 99 |
0 | 30 | 48 |
1 | 31 | 49 |
! | 21 | 33 |
؟ | 3F | 63 |
Where is ASCII to Hex Used?
ASCII to hex conversion is used in programming, networking, debugging, embedded systems, and anywhere byte-level data is displayed or processed. Hexadecimal is shorter and more readable for humans than binary, and widely supported by all platforms.
FAQ
- Q: Does it support Unicode characters?
A: This tool is designed for standard ASCII (single byte, 0-127). Extended characters may have different codes in Unicode. - Q: Can I use custom delimiters?
A: Yes, choose one from the list or enter your own string (comma, space, dash, etc.). - Q: How do I convert hex back to ASCII?
A: Use our Hex to ASCII tool for reverse conversion.