C#:
String s = "tada";
Debug.Log("The first character of the string is: " + s.Substring(0, 1));
What the substring method does is retrieve a string within the string. The first parameter 0 is the starting index (starting position of the substring), and the number 1 is the amount of characters to grab.