C:
char c = '\u1E73';
printf("%c\n", c); // Output: ṳ
JavaScript:
const char = '\u1E73';
console.log(char); // Output: ṳ
Java:
char c = '\u1E73';
System.out.println(c); // Output: ṳ
JSON:
{"text": "\u1E73"} // Value: ṳ
Python:
char = '\u1E73'
print(char) # Output: ṳ
Perl:
my $char = "\x{1E73}";
print $char; # Output: ṳ
PHP:
$char = "\x{1E73}";
echo $char; // Output: ṳ
Ruby:
char = "\u{1E73}"
puts char # Output: ṳ
Rust:
let c = '\u{1E73}';
println!("{}", c); // Output: ṳ
Go:
char := '\u1E73'
fmt.Printf("%c\n", char) // Output: ṳ
CSS:
/* CSS content property */
.element::before {
content: "\001E73"; /* 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%B3
MD5:
13cd1640ecec5764cc1e50ce87d10502
SHA1:
7a90d24bf4c1bc6e5629c23a8f863b9b59ca0420
Base64:
4bmz