What’s the most efficient way to pass a single char to a method expecting a CharSequence? This is what I’ve got: According to the answers given here, this is a sensible way of doing it where the input is a character array. I was wondering if there was a sneaky shortcut I could apply in the single-char case. Answer