I’m not sure if this is what you’re asking. You can access each character in the string using the [[] Operator][1]. Each character in the string is indexed, from 0 to (Length of string) - 1.
string test = "123A";
for (int i = 0; i < test.Length; i++) {
Debug.Log(test*); // print character at index 'i' in string*