ASCII is the acronym for American Standard Code for Information Interchange. It is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices.
Examples:
- from
AtoZis represented as65to90 - from
atozis represented as97to122 - from
0to9is represented as48to57 !is represented as33?is represented as63
Since binary can only count up to 255 we are limited to the number of characters represented by ASCII.
🔤 If you wish, you can learn more about ASCII, or see the ASCII table.
Unicode is a computing industry standard for the consistent encoding, representation, and handling of text expressed in most of the world's writing systems. The Unicode standard provides a unique number for every character, no matter what platform, device, application, or language.
Examples:
- from
AtoZis represented asU+0041toU+005A - from
atozis represented asU+0061toU+007A - from
0to9is represented asU+0030toU+0039 !is represented asU+0021?is represented asU+003F
If you wish, you can learn more about Unicode, or see the Unicode table.
Unicode allows for the representation of characters from different languages, including special characters, such as emojis.
Emoji are ideograms and smileys used in electronic messages and web pages. Emoji exist in various genres, including facial expressions, common objects, places, and types of weather, and animals.
There are emoji that you probably use every day. The following may look familiar to you:
| Emoji | Unicode |
|---|---|
| 😂 | U+1F602 |
| 😍 | U+1F60D |
| 😎 | U+1F60E |
| 😜 | U+1F61C |
| 😡 | U+1F621 |
| 😢 | U+1F622 |
If you wish, you can learn more about emoji, or see the emoji table.