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