C:
char c = '\u9D1F';
printf("%c\n", c); // Output: 鴟
JavaScript:
const char = '\u9D1F';
console.log(char); // Output: 鴟
Java:
char c = '\u9D1F';
System.out.println(c); // Output: 鴟
JSON:
{"text": "\u9D1F"} // Value: 鴟
Python:
char = '\u9D1F'
print(char) # Output: 鴟
Perl:
my $char = "\x{9D1F}";
print $char; # Output: 鴟
PHP:
$char = "\x{9D1F}";
echo $char; // Output: 鴟
Ruby:
char = "\u{9D1F}"
puts char # Output: 鴟
Rust:
let c = '\u{9D1F}';
println!("{}", c); // Output: 鴟
Go:
char := '\u9D1F'
fmt.Printf("%c\n", char) // Output: 鴟
CSS:
/* CSS content property */
.element::before {
content: "\009D1F"; /* 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%9F
MD5:
caffb748af0a0ca213ab4eaf4166e678
SHA1:
15bc2eb5018e61c1031ff61b1f4befcd844a7831
Base64:
6bSf