C:
char c = '\u0046';
printf("%c\n", c); // Output: F
JavaScript:
const char = '\u0046';
console.log(char); // Output: F
Java:
char c = '\u0046';
System.out.println(c); // Output: F
JSON:
{"text": "\u0046"} // Value: F
Python:
char = '\u0046'
print(char) # Output: F
Perl:
my $char = "\x{0046}";
print $char; # Output: F
PHP:
$char = "\x{0046}";
echo $char; // Output: F
Ruby:
char = "\u{0046}"
puts char # Output: F
Rust:
let c = '\u{46}';
println!("{}", c); // Output: F
Go:
char := '\u0046'
fmt.Printf("%c\n", char) // Output: F
CSS:
/* CSS content property */
.element::before {
content: "\000046"; /* 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:
800618943025315f869e4e1f09471012
SHA1:
e69f20e9f683920d3fb4329abd951e878b1f9372
Base64:
Rg==