Text Character

From GM-RKB
(Redirected from text character)
Jump to navigation Jump to search

A Text Character is a computer symbol that represents an orthographic item.



References

2018

  • https://www.programiz.com/python-programming/string
    • QUOTE: A string is a sequence of characters.

      A character is simply a symbol. For example, the English language has 26 characters.

      Computers do not deal with characters, they deal with numbers (binary). Even though you may see characters on your screen, internally it is stored and manipulated as a combination of 0's and 1's.

      This conversion of character to a number is called encoding, and the reverse process is decoding. ASCII and Unicode are some of the popular encoding used.