RosettaCodeData/Task/Special-characters/Ada/special-characters-2.ada
2023-07-01 13:44:08 -04:00

6 lines
158 B
Ada

with Ada.Wide_Wide_Text_IO; use Ada.Wide_Wide_Text_IO;
procedure Test is
begin
Put ("Unicode """ & ''' & """" & Wide_Wide_Character'Val (10));
end Test;