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