C:
char c = '\u002C';
printf("%c\n", c); // Output: ,
JavaScript:
const char = '\u002C';
console.log(char); // Output: ,
Java:
char c = '\u002C';
System.out.println(c); // Output: ,
JSON:
{"text": "\u002C"} // Value: ,
Python:
char = '\u002C'
print(char) # Output: ,
Perl:
my $char = "\x{002C}";
print $char; # Output: ,
PHP:
$char = "\x{002C}";
echo $char; // Output: ,
Ruby:
char = "\u{002C}"
puts char # Output: ,
Rust:
let c = '\u{2C}';
println!("{}", c); // Output: ,
Go:
char := '\u002C'
fmt.Printf("%c\n", char) // Output: ,
CSS:
/* CSS content property */
.element::before {
content: "\00002C"; /* Display: , */
}
HTML Decimal:
<p>HTML decimal: ,</p> <!-- Display: , -->
HTML Hexadecimal:
<p>HTML hex: ,</p> <!-- Display: , -->
URL Encoding:
// , URL encoding
https://unicodefinder.com/search.php?query=%2C
MD5:
c0cb5f0fcf239ab3d9c1fcd31fff1efc
SHA1:
5c10b5b2cd673a0616d529aa5234b12ee7153808
Base64:
LA==