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