C:
char c = '\u0165';
printf("%c\n", c); // Output: ť
JavaScript:
const char = '\u0165';
console.log(char); // Output: ť
Java:
char c = '\u0165';
System.out.println(c); // Output: ť
JSON:
{"text": "\u0165"} // Value: ť
Python:
char = '\u0165'
print(char) # Output: ť
Perl:
my $char = "\x{0165}";
print $char; # Output: ť
PHP:
$char = "\x{0165}";
echo $char; // Output: ť
Ruby:
char = "\u{0165}"
puts char # Output: ť
Rust:
let c = '\u{165}';
println!("{}", c); // Output: ť
Go:
char := '\u0165'
fmt.Printf("%c\n", char) // Output: ť
CSS:
/* CSS content property */
.element::before {
content: "\000165"; /* 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%A5
MD5:
57b4ea32bac9f707beae75df71c7e2bc
SHA1:
fe091b55d3f05dad29859cb01a254e0253cd20ad
Base64:
xaU=