C:
char c = '\u9D0A';
printf("%c\n", c); // Output: 鴊
JavaScript:
const char = '\u9D0A';
console.log(char); // Output: 鴊
Java:
char c = '\u9D0A';
System.out.println(c); // Output: 鴊
JSON:
{"text": "\u9D0A"} // Value: 鴊
Python:
char = '\u9D0A'
print(char) # Output: 鴊
Perl:
my $char = "\x{9D0A}";
print $char; # Output: 鴊
PHP:
$char = "\x{9D0A}";
echo $char; // Output: 鴊
Ruby:
char = "\u{9D0A}"
puts char # Output: 鴊
Rust:
let c = '\u{9D0A}';
println!("{}", c); // Output: 鴊
Go:
char := '\u9D0A'
fmt.Printf("%c\n", char) // Output: 鴊
CSS:
/* CSS content property */
.element::before {
content: "\009D0A"; /* 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%B4%8A
MD5:
65c95af8abe70fdf6b3c3d0e8de29a31
SHA1:
50cb872b022b56c6fa377ef525f036490fccc612
Base64:
6bSK