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