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