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