C:
char c = '\u9D1E';
printf("%c\n", c); // Output: 鴞
JavaScript:
const char = '\u9D1E';
console.log(char); // Output: 鴞
Java:
char c = '\u9D1E';
System.out.println(c); // Output: 鴞
JSON:
{"text": "\u9D1E"} // Value: 鴞
Python:
char = '\u9D1E'
print(char) # Output: 鴞
Perl:
my $char = "\x{9D1E}";
print $char; # Output: 鴞
PHP:
$char = "\x{9D1E}";
echo $char; // Output: 鴞
Ruby:
char = "\u{9D1E}"
puts char # Output: 鴞
Rust:
let c = '\u{9D1E}';
println!("{}", c); // Output: 鴞
Go:
char := '\u9D1E'
fmt.Printf("%c\n", char) // Output: 鴞
CSS:
/* CSS content property */
.element::before {
content: "\009D1E"; /* 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=%E9%B4%9E
MD5:
215cfec2cf0a5f7c85bce4831619de37
SHA1:
361d2b6acc30096f2d973fc4e2f9ed5e36147915
Base64:
6bSe