Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java
String s = Character.toString(c);
String s = "%s".formatted(c);
String s = c + "";

This "lazy way" is quite common, but slow at runtime.
String s = = new Character(c).toString();
String s = String.valueOf(c);
S : constant String := "" & C;

Create string by concatenating character to empty string

New implementation...
< >
programming-idioms.org