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