So lets say If I have a String variable like String word = "Hello"; Program will reserve some bytes for that string, Do you know how the string "Hello" is stored in those bytes? Can we access individual bytes where the program has reserved some bytes for string "Hello". Because I was thinking If the program saves each character as string in each individual bytes then maybe I can access the individual byte and manipulate the string. Is it possible? Also can you pass a string store somewhere in a function and somehow assign that string to an array inside the function such that each index has individual characters of the string? Please help me with I need it