C:
char c = '\u9D8D';
printf("%c\n", c); // Output: 鶍
JavaScript:
const char = '\u9D8D';
console.log(char); // Output: 鶍
Java:
char c = '\u9D8D';
System.out.println(c); // Output: 鶍
JSON:
{"text": "\u9D8D"} // Value: 鶍
Python:
char = '\u9D8D'
print(char) # Output: 鶍
Perl:
my $char = "\x{9D8D}";
print $char; # Output: 鶍
PHP:
$char = "\x{9D8D}";
echo $char; // Output: 鶍
Ruby:
char = "\u{9D8D}"
puts char # Output: 鶍
Rust:
let c = '\u{9D8D}';
println!("{}", c); // Output: 鶍
Go:
char := '\u9D8D'
fmt.Printf("%c\n", char) // Output: 鶍
CSS:
/* CSS content property */
.element::before {
content: "\009D8D"; /* 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%B6%8D
MD5:
4b734ddb226acfc2d08e50190cd52be5
SHA1:
394ccb1d0d67f359a33965e010e50e4fb9eec6ac
Base64:
6baN