C:
char c = '\u0063';
printf("%c\n", c); // Output: c
JavaScript:
const char = '\u0063';
console.log(char); // Output: c
Java:
char c = '\u0063';
System.out.println(c); // Output: c
JSON:
{"text": "\u0063"} // Value: c
Python:
char = '\u0063'
print(char) # Output: c
Perl:
my $char = "\x{0063}";
print $char; # Output: c
PHP:
$char = "\x{0063}";
echo $char; // Output: c
Ruby:
char = "\u{0063}"
puts char # Output: c
Rust:
let c = '\u{63}';
println!("{}", c); // Output: c
Go:
char := '\u0063'
fmt.Printf("%c\n", char) // Output: c
CSS:
/* CSS content property */
.element::before {
content: "\000063"; /* 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:
4a8a08f09d37b73795649038408b5f33
SHA1:
84a516841ba77a5b4648de2cd0dfcb30ea46dbb4
Base64:
Yw==