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