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