Glossary

ASCII

American Standard Code for Information Interchange. A character encoding that assigns a numeric value (0-127) to each character. In Pascal, `Ord` returns the ASCII code of a `Char`, and `Chr` converts a code back to a `Char`. (Ch. 3)

Learn More

Related Terms