Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
String s = = new Character(c).toString();
String s = Character.toString(c);
String s = c + "";
String s = String.valueOf(c);
String s = String.format("%s", c);
S : constant String := "" & C;
(def s (str c))
string s { 'c' };
string s = c.ToString();
var s = new string(c, 1);
import std.conv : to;
string s = to!string(c);
var s=c;
to_string(char)
S = [C]
character(len=:),allocatable :: s
character(len=1) :: c
s=c
import "fmt"
s := fmt.Sprintf("%c", c)
s = [c]
let s = c
val s: String = c.toString()
(defparameter *s* (string c))
s = c
$s = (string) $c;
var
  s: string;
begin
  s := 'c';
end.
my $s = $c;
s = c
s = ?c
let s = c.to_string();

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