Hex -> Char
01.01.2007
var
Str: Char;
begin
Str := 'В';
Form1.Caption := Format('%x', [Ord(Str)]);
end;
01.01.2007
var
Str: Char;
begin
Str := 'В';
Form1.Caption := Format('%x', [Ord(Str)]);
end;
|
Previous page:
Hex -> Bin |
Top: DRKB |
Next page: Hex -> String |