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