Try this:
DECLARE @tmp TABLE (Country VARCHAR(30))
INSERT INTO @tmp (Country)
VALUES ('Austrilia'), ('A1'), ('Colombo'), ('Brazil')
SELECT Country
FROM (
SELECT Country
FROM @tmp
UNION ALL
SELECT LEFT(Country,1) AS Country
FROM @tmp
) AS T
ORDER BY Country