C:
char c = '\u1E6A';
printf("%c\n", c); // Output: Ṫ
JavaScript:
const char = '\u1E6A';
console.log(char); // Output: Ṫ
Java:
char c = '\u1E6A';
System.out.println(c); // Output: Ṫ
JSON:
{"text": "\u1E6A"} // Value: Ṫ
Python:
char = '\u1E6A'
print(char) # Output: Ṫ
Perl:
my $char = "\x{1E6A}";
print $char; # Output: Ṫ
PHP:
$char = "\x{1E6A}";
echo $char; // Output: Ṫ
Ruby:
char = "\u{1E6A}"
puts char # Output: Ṫ
Rust:
let c = '\u{1E6A}';
println!("{}", c); // Output: Ṫ
Go:
char := '\u1E6A'
fmt.Printf("%c\n", char) // Output: Ṫ
CSS:
/* CSS content property */
.element::before {
content: "\001E6A"; /* 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=%E1%B9%AA
MD5:
188ae214b385ac8c2718eb1e5040d5b3
SHA1:
d992c3501abc6c3f4b308703ab3c2831dc4eaca9
Base64:
4bmq