C:
char c = '\u0164';
printf("%c\n", c); // Output: Ť
JavaScript:
const char = '\u0164';
console.log(char); // Output: Ť
Java:
char c = '\u0164';
System.out.println(c); // Output: Ť
JSON:
{"text": "\u0164"} // Value: Ť
Python:
char = '\u0164'
print(char) # Output: Ť
Perl:
my $char = "\x{0164}";
print $char; # Output: Ť
PHP:
$char = "\x{0164}";
echo $char; // Output: Ť
Ruby:
char = "\u{0164}"
puts char # Output: Ť
Rust:
let c = '\u{164}';
println!("{}", c); // Output: Ť
Go:
char := '\u0164'
fmt.Printf("%c\n", char) // Output: Ť
CSS:
/* CSS content property */
.element::before {
content: "\000164"; /* Display: Ť */
}
HTML Decimal:
<p>HTML decimal: Ť</p> <!-- Display: Ť -->
HTML Hexadecimal:
<p>HTML hex: Ť</p> <!-- Display: Ť -->
URL Encoding:
// Ť URL encoding
https://unicodefinder.com/search.php?query=%C5%A4
MD5:
0416ae60f7c8bc97425c7c65ba0e305e
SHA1:
d84d51361a57e918e32ba1923ddc1b6373a1688b
Base64:
xaQ=