How to resolve the algorithm Character codes step by step in the Bracmat programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Character codes step by step in the Bracmat programming language

Table of Contents

Problem Statement

Given a character value in your language, print its code   (could be ASCII code, Unicode code, or whatever your language uses).

The character   'a'   (lowercase letter A)   has a code of 97 in ASCII   (as well as Unicode, as ASCII forms the beginning of Unicode). Conversely, given a code, print out the corresponding character.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Character codes step by step in the Bracmat programming language

Source code in the bracmat programming language

( put
$ ( str
  $ ( "\nLatin a
        ISO-9959-1: "
      asc$a
      " = "
      chr$97
      "
             UTF-8: "
      utf$a
      " = "
      chu$97
      \n
      "Cyrillic а (UTF-8): "
      utf$а
      " = "
      chu$1072
      \n
    )
  )
)

  

You may also check:How to resolve the algorithm Simple database step by step in the 11l programming language
You may also check:How to resolve the algorithm Almost prime step by step in the APL programming language
You may also check:How to resolve the algorithm Queue/Definition step by step in the Scheme programming language
You may also check:How to resolve the algorithm Copy a string step by step in the PureBasic programming language
You may also check:How to resolve the algorithm Doubly-linked list/Definition step by step in the C++ programming language