pascalabcnet/InstallerSamples/!Tutorial/07_CharString/Char1.pas

11 lines
305 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Стандартные функции Ord и Chr
begin
var c := 'z';
var i := Ord(c);
Println($'Код символа {c} в кодировке Unicode равен {i}');
i := 1025;
c := Chr(i);
Println($'Символ с кодом {i} в кодировке Unicode - это {c}');
end.