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